.form-signin {
    max-width: 380px;
    background-color: #f8f9fa;
}

h5 {
    line-height: 1.4;
}

.auth-social {
    text-decoration: none;
    border: 1px solid #94a3b8;
    transition: background-color 0.4s ease, border 0.4s ease; 
    color: #334155;
}
.auth-social:hover {
    background-color: #eff6ff;
    text-decoration: none;
    border: 1px solid #93c5fd;
    color: #0038b8;
}



.separator-block {
    max-width: 240px;
}
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: #6c757d;
}
.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;  
}
.separator::before {
    margin-right: 1rem;
}
.separator::after {
    margin-left: 1rem;
}




.otp-group {
    gap: 4px;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
.form-control--otp {
    width: 40px;
    height: 54px;
    padding: 0;
    flex: 0 0 40px;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    caret-color: transparent;
 
    -webkit-appearance: none;
}

@media (max-width: 400px) { 
    .otp-group {
        gap: 2px;
        padding-left: 0;
        padding-right: 0;
    }

    .form-control--otp {
        width: 36px;
        height: 50px;
        flex: 0 0 36px;
        font-size: 1.3rem;
    }
}  
@media (max-width: 360px) { 
    .form-control--otp {
        width: 32px;
        height: 40px;
        flex: 0 0 32px;
    }
} 


.form-control--otp:focus {
    outline: none !important;
    box-shadow: none !important;
}

.otp-divider {
    width: 10px;
    height: 2px;
    background: #d5d3e4;
    border-radius: 2px;
    flex-shrink: 0;
}

 

