.forgot-password,
.forgot-password * {
    box-sizing: border-box;
}

.forgot-password {
    background: #000000;
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-x-16-1 {
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    filter: blur(4px);
    object-fit: cover;
    z-index: 1;
}

.rectangle-19 {
    background: rgba(0, 0, 0, 0.5);
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
}

.rectangle-20 {
    background: rgba(11, 11, 11, 0.3);
    border-radius: 50px;
    width: 90%;
    max-width: 500px;
    height: 350px;
    max-height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    margin: 0;
    z-index: 3;
}

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text4 {
    color: #ffffff;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: 35px;
    line-height: 150%;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1%;
    margin-top: 0;
}

.text3 {
    color: #ffffff;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(0.6rem, 3vw, 1rem);
    line-height: 150%;
    font-weight: 400;
}

.email {
    background: #fefefe;
    border-radius: 15px;
    padding: 2% 4%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 400px;
    max-width: 400px;
    height: 45px;
    position: relative;
    margin-top: 3%
}

.text2 {
    color: rgba(0, 0, 0, 0.4);
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(0.6rem, 3vw, 1rem);
    line-height: 150%;
    font-weight: 400;
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
}

.next-button {
    background: #000000;
    border-radius: 15px;
    border: 1px solid #ffffff;
    padding: 0.6vw 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 45px;
    margin: 3% auto 0 auto;
}

.text {
    color: #ffffff;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(0.7rem, 3.5vw, 1.125rem);
    line-height: 150%;
    font-weight: 600;
}

.undo {
    width: 31px;
    height: 31px;
    position: absolute;
    right: 30px;
    top: 25px;
    cursor: pointer;
}

.text-danger {
    color: #ff0000;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(0.6rem, 3vw, 1rem);
    text-align: center;
    margin: 0 auto 3% auto;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

a, button, input, select, h1, h2, h3, h4, h5, * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    text-decoration: none;
    background: none;
    -webkit-font-smoothing: antialiased;
}

menu, ol, ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 750px) {
    .rectangle-20 {
        padding: 20px 15px;
        max-height: 350px;
    }

    .header {
        width: 340px;
    }

    .text4 {
        font-size: 1.5rem;
    }

    .text3 {
        font-size: 0.8rem;
    }

    .email {
        width: 340px;
        height: 40px;
    }

    .next-button {
        width: 140px;
        height: 40px;
    }

    .undo {
        width: 25px;
        height: 25px;
        right: 10px;
        top: 0;
    }
}

@media (max-width: 480px) {
    .rectangle-20 {
        max-width: 350px;
        max-height: 300px;
        border-radius: 0;
        padding: 15px 10px;
    }

    .header {
        width: 300px;
    }

    .text4 {
        font-size: 1.2rem;
    }

    .text3 {
        font-size: 0.6rem;
    }

    .email {
        width: 300px;
        height: 35px;
    }

    .next-button {
        width: 120px;
        height: 35px;
    }

    .undo {
        width: 20px;
        height: 20px;
        right: 10px;
        top: 10px;
    }
}
