* {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-style: normal;
}

.dNone {
    display: none;
}

.headerLeft {
    position: absolute;
    left: 5.35%;
    right: 87.71%;
    top: 7.81%;
    bottom: 80.28%;
}

.Background {
    background-color: #F5F5F5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgotFrame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    isolation: isolate;
    position: absolute;
    width: 90%;
    max-width: 826px;
    height: 462px;
    background: #FFFFFF;
    box-shadow: 0px 0px 14px 3px rgba(0, 0, 0, 0.04);
    border-radius: 30px;
}

.arrow {
    position: absolute;
    left: 5%;
    top: 5%;
}

.forgotContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.forgotHeader {
    font-weight: 700;
    font-size: 61px;
    line-height: 120%;
    text-align: center;
    color: #000000;
}

.dontWorry {
    width: 656px;
    height: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 120%;
    text-align: center;
    color: #000000;
}

.login {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.loginInput {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    width: 422px;
}

.input {
    box-sizing: border-box;
    padding: 13px 21px;
    background: #FFFFFF;
    border: 1px solid #D1D1D1;
    border-radius: 10px;
}

.input input {
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 21px;
    line-height: 120%;
}

.input input::placeholder {
    color: #D1D1D1;
}

.forgotBtn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 0px;
    gap: 10px;
    width: 264px;
    height: 51px;
    background: #2A3647;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    color: #FFFFFF;
    transition: 200ms;
}

.button:hover {
    cursor: pointer;
    background-color: #29ABE2;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.button:active {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: black;
}

.btnEmailSend {
    display: flex !important;
    height: 60px;
    width: 400px;
    background: #2a3647;
    border-radius: 8px;
    font-weight: 700;
    font-size: 21px;
    line-height: 120%;
    border: none;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 0px;
    position: absolute;
    bottom: 100px;
    gap: 15px;
}

.dNone {
    display: none;
}

@media(max-width:850px) {
    .headerLeft {
        top: 20px;
    }
    .forgotFrame {
        height: 600px;
        justify-content: center;
    }
    .forgotContent {
        width: 90%;
    }
    .forgotHeader {
        white-space: break-spaces;
    }
    .dontWorry {
        white-space: break-spaces;
        width: 90%;
        height: unset;
    }
    .input input {
        width: 220px;
    }
    .arrow {
        top: 10px;
        left: 10px;
    }
    .btn {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media (max-width:410px) {
    .forgotFrame {
        height: 700px;
    }
}