
.reset-password-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100svh;
    width: 100svw;
    background-color: var(--background-color);
}




.forgot-password-container , .reset-password-container {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    max-height: 400px;
    max-width: 600px;
    padding: 10px;
    box-sizing: border-box;
    background-color: var(--primary-color);
    color: #FFFFFF;
    transition: opacity 0.3s;
}



.forgot-password-container .title  , .reset-password-title{
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: bold;
}

.forgot-password-container .subtitle  , .reset-password-subtitle{
    font-size: 14px;
    margin-bottom: 28px;
}

.forgot-password-container .input , .reset-password-input{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--secondary-color);
    color: var(--text-color);
    padding: 10px 6px;
    font-size: 15px;
    outline: none;
}

.forgot-password-container .input::placeholder{
    color: var(--text-color-25);
}

.forgot-password-container .btn , .reset-password-btn {
    margin-top: 30px;
    width: 100%;
    padding: 12px 0;
    color: var(--text-color);
    background-color: var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    border: none;
    letter-spacing: 0.5px;
}

.forgot-password-container .message , .reset-password-message{
    margin-top: 20px;

    font-size: 14px;
    min-height: 18px;
}

.forgot-password-container .back-link , .reset-password-container .back-link{
    margin-top: 25px;
    display: block;
    font-size: 13px;
    text-decoration: none;
}



.reset-password-container {
    background-color: var(--background-color);
    color: var(--primary-color);
}

.reset-password-input{
    color: var(--primary-color);
}

.reset-password-input::placeholder {
    background-color: var(--background-color);
    color: var(--hover-color);
}


.reset-password-back-link {
   text-decoration: none;
}

.top-left {
    position: absolute;
    top: 20px;
    left: 20px;
}

.top-left path {
    fill: var(--primary-color);
}

.top-left .navigation-logo {
    filter: none;
}