:root {
    --primary: #039D55;
    --primary-dark: #027a42;
    --primary-light: #04be67;
    --accent: #00d2ff;
    --text-main: #1e2022;
    --text-muted: #677788;
    --bg-light: #f8fafd;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

body {
    background: var(--bg-light);
    font-family: 'Inter', 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.auth-wrapper {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

.auth-wrapper-left {
    flex: 1;
    background: linear-gradient(135deg, #039D55 0%, #014c2a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--white);
    overflow: hidden;
}

/* Glassmorphism shapes */
.auth-wrapper-left::before,
.auth-wrapper-left::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.auth-wrapper-left::before {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    top: -100px;
    left: -100px;
}

.auth-wrapper-left::after {
    width: 400px;
    height: 400px;
    background: rgba(0, 210, 255, 0.2);
    bottom: -150px;
    right: -150px;
}

.auth-left-cont {
    position: relative;
    z-index: 2;
    max-width: 500px;
    text-align: left;
}

.auth-left-cont img {
    width: 80px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.auth-left-cont .title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.auth-left-cont .title span {
    opacity: 0.9;
}

.auth-left-cont .title strong {
    color: #a8ff78; /* Light green accent */
    text-shadow: 0 0 20px rgba(168, 255, 120, 0.3);
}

.auth-wrapper-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
    position: relative;
}

.__login-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(3, 157, 85, 0.1);
    color: var(--primary);
    font-weight: 600;
}

.auth-wrapper-form {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.auth-header div {
    color: var(--text-muted);
    font-size: 1rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.form-control-lg {
    height: 54px;
    border-radius: var(--border-radius);
    border: 1.5px solid #e7eef8;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(3, 157, 85, 0.1);
}

.input-group-text {
    background: transparent;
    border: 1.5px solid #e7eef8;
    border-left: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--text-muted);
    cursor: pointer;
}

.input-group-merge .form-control {
    border-right: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--white);
    font-weight: 700;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(3, 157, 85, 0.3);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 157, 85, 0.4);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.custom-control-label {
    cursor: pointer;
    font-size: 0.875rem;
}

#forget-password .text-primary, 
#forget-password1 .text-primary {
    color: var(--primary) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

#forget-password .text-primary:hover, 
#forget-password1 .text-primary:hover {
    color: var(--primary-dark) !important;
}

.auto-fill-data-copy {
    background: rgba(3, 157, 85, 0.05);
    border: 1px dashed var(--primary);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 2rem;
}

.auto-fill-data-copy span {
    font-size: 0.875rem;
    color: var(--text-main);
}

.action-btn.btn--primary {
    padding: 0.4rem 0.6rem;
    margin: 0;
    font-size: 0.875rem;
}

/* Captcha styling */
#reload-captcha {
    background: #f8fafc;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    border: 1px solid #e7eef8;
}

.capcha-spin {
    color: var(--primary);
    cursor: pointer;
}

.capcha-spin i {
    font-size: 1.2rem;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .auth-wrapper-left {
        display: none;
    }
    .auth-wrapper-right {
        padding: 1.5rem;
    }
    .auth-wrapper-form {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    .auth-wrapper-right {
        padding: 1rem;
    }
    .auth-wrapper-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    .auth-header h2 {
        font-size: 1.5rem;
    }
    .form-control-lg {
        height: 48px;
        padding: 0.6rem 1rem;
    }
    .btn--primary {
        padding: 0.8rem;
        font-size: 1rem;
    }
    .__login-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.75rem;
    }
}

/* Modal Styling */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.close-modal-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.forget-pass-content h4 {
    font-weight: 700;
    margin: 1.5rem 0 1rem;
}

.forget-pass-content p {
    color: var(--text-muted);
}
