.auth-left-display{
    background-color: #FEFEFE;
}

.logo-image{
    width: 60%;
    max-width: 400px;
    height: auto;
}

.auth-right-display{
    border-radius: 50px 0 0 50px;
    background-color: #C30E59;
}

@media (max-width: 767.99px) {
    .auth-right-display {
        border-radius: 0;
    }
}

.auth-form-display{
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 39px 33px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.auth-input-form form {
    display: flex;
    padding: 23px 27px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
}

.auth-input-group {
    width: 262px;
}

.auth-input-field{
    width: 262px;
    height: 45px;
    border-radius: 15px;
    border: 1px solid #808080;
    background: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    
    .input-icon{
        width: 18px;
        height: 18px;
    }

    > input {
        width: 100%;
        height: 100%;
        border: none;
        outline:none;
    }
}

.auth-input-field-error {
    border-color: #C30E59;
}

.auth-field-error {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.4;
    color: #C30E59;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.auth-error-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #C30E59;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    flex: 0 0 16px;
}

.auth-general-error {
    margin-top: 8px;
    margin-bottom: 8px;
    color: #B42318;
    font-size: 14px;
}

.auth-success {
    margin-top: 8px;
    margin-bottom: 8px;
    color: #F2AE66;
    font-size: 14px;
}
.forgot-link {
    font-size: 12px;
    color: #808080;
    text-decoration: none;
    align-self: flex-end;
}
.forgot-link:hover {
    color: #C30E59;
    text-decoration: underline;
}
