body,
html {
    height: 100%;
    margin: 0;
    margin-right: 20px;
}

/* background */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* ⬅ این باعث میشه رویدادهای موس ازش عبور کنن */
}

body {
    background-color: #202031;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.forgot-card {
    text-align: center;
    padding: 20px;
    width: 405.5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    transform-origin: center;
    background-color: #fff;
    height: 300px;
}

.title {
    font-weight: 800;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 28px;
    margin: 10px 0 30px 0;
}

.form {
    display: flex;
    flex-direction: column;
}

.input {
    padding: 15px 17px;
    border: none;
    outline: none;
    margin: 3px;
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 800;
    box-shadow: rgba(143, 143, 143, 0.5) 0px 0px 30px 0px;
    border-radius: 40px;
    transition: all 0.75s ease;
}

.input:focus {
    transform: translateY(-5px);
}

.submit-btn {
    margin-top: 35px;
    border: none;
    border-radius: 30px;
    background-color: teal;
    color: #fff;
    padding: 14px;
    width: 100%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 5px 5px 20px rgb(141, 141, 141);
    transition: all 0.75s ease;
}

.submit-btn:hover {
    transform: translateY(-5px);
    background-color: #165f5f;
}

.login-back {
    font-size: 13px;
    margin-top: 30px;
    justify-content: left;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 800;
    text-align: start;
}

.login-back-click {
    cursor: pointer;
    font-size: 13px;
    color: teal;
    font-weight: 800;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    transition: all 1s easy;
}

.login-back-click:hover {
    color: rgb(0, 83, 83);
    text-decoration: underline;
}