@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F5F9FA;
    font-family: 'Inter', sans-serif;
}

.card__reset-password {
    background-color: #ffffff;
    max-width: 450px;
    min-height: 430px;
    border-radius: 15px;
    box-shadow: 0px 0px 30px -1px rgba(213, 213, 213, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(15%);
}

.card__reset-password-title h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: -0.03em;
    color: #121F3F;
    margin-top: 2rem;
}

.card__reset-password-text p {
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.03em;
    color: #959FB3;
}

.card__reset-password-form:nth-child(1) {
    margin-top: 0.5rem;
}

.card__reset-password-form:nth-child(2) {
    margin-top: 0.6rem;
}

.card__reset-password-form-title {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.03em;
    color: #121F3F;
    padding-bottom: 0.3rem;
}

.card__reset-password-form-input {
    width: 360px;
    /* width: 100%; */
    height: 45px;
    background: #FFFFFF;
    border: 0.3px solid rgba(149, 159, 179, 0.5);
    border-radius: 10px;
}

.card__reset-password-button {
    margin-top: 2rem;
}

.card__reset-password-button button {
    /* width: 360px; */
    width: 360px;
    height: 45px;
    background: #3454CF;
    box-shadow: 1px 3px 10px rgba(52, 84, 207, 0.3);
    border-radius: 10px;

    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.card__reset-password-button button:hover {
    color: #FFFFFF;
    background: #2946ba;
    box-shadow: 0px 4px 10px 2px rgba(52, 84, 207, 0.35);
}

.card__reset-password-try {
    margin-top: 1rem;
}

.card__reset-password-try p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: -0.01em;
    color: #959FB3;
}

.card__reset-password-try a {
    text-decoration: none;
    color: #3454CF;
}

.card__reset-password-try a:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 400px) {
    .card__reset-password-text p {
        font-size: 11px !important;
    }
    .card__reset-password-form-input {
        width: 100px !important;
    }
    .card__reset-password-button button {
        width: 100px !important;
    }
    .card__reset-password-title h1 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 450px) {
    .card__reset-password-form-input {
        width: 300px !important;
    }
    .card__reset-password-button button {
        width: 300px !important;
    }
    .card__reset-password-title h1 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 500px) {
    .card__reset-password-text p {
        font-size: 13px;
    }
    .card__reset-password-form-input {
        width: 330px;
    }
    .card__reset-password-button button {
        width: 330px;
    }
}

@media only screen and (max-width: 1024px) {
    .card__reset-password {
        transform: translateY(20%);
    }
}