.form-title,
.password-container {
    position: relative
}

.eye-icon,
.user-login-body {
    display: flex;
    align-items: center
}

:root {
    --primary: #9B6B34;
    --secondary: #3f37c9;
    --success: #9B6B34;
    --light: #f8f9fa;
    --dark: #212529
}

.user-login-body {
    background: linear-gradient(135deg, #f5f7fa 0, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

.login-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto
}

#loginSubmitText {
    color: #fff
}

.form-section {
    padding: 40px
}

.form-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 15px;
    text-align: center
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--success);
    border-radius: 2px
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: .3s
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(67, 97, 238, .25)
}

.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    z-index: 10;
    background: #fff;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    transition: .3s
}

.eye-icon:hover {
    color: var(--primary);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15)
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, .4)
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef
}

.forgot-password {
    display: block;
    text-align: right;
    margin-top: 5px;
    color: var(--primary);
    text-decoration: none;
    font-size: .9rem
}

.forgot-password:hover {
    text-decoration: underline
}

.response-message {
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
    display: none
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb
}

.social-login {
    margin: 25px 0
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0
}

.divider::after,
.divider::before {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e9ecef
}

.divider span {
    padding: 0 15px;
    color: #6c757d;
    font-size: .9rem
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    transition: .3s;
    border: 1px solid #e9ecef;
    background: #fff
}

.btn-facebook,
.btn-facebook:hover,
.btn-google,
.btn-google:hover {
    background-color: #9b6b34;
    color: #fff
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .1)
}

.btn-social .icon {
    margin-right: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center
}

.auth0-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1050;
    justify-content: center;
    align-items: center
}

.auth0-modal-content {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    text-align: center
}

.auth0-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(67, 97, 238, .3);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: 1s linear infinite spin;
    margin: 0 auto 20px
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.auth0-modal-message {
    font-size: 1.1rem;
    margin-bottom: 20px
}

.btn.btn-cmmn-dash {
    background: #9b6b34
}

.btn.btn-cmmn-dash:hover {
    background: #9b6b34;
    transform: translateY(-2px)
}

@media (max-width:576px) {
    .form-section {
        padding: 30px 20px
    }
}