/* --- Modern Auth Layout (Professional - Light Theme) --- */
.modern-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    font-family: 'Inter', -apple-system, sans-serif;
    padding: 20px;
}

.modern-auth-card {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
    border: 1px solid #e2e8f0;
}

.auth-branding {
    flex: 1.2;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.auth-branding .branding-content {
    position: relative;
    z-index: 10;
}

.branding-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.branding-content p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Decorative shapes */
.auth-branding .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.auth-branding .shape-1 {
    width: 450px;
    height: 450px;
    top: -150px;
    right: -100px;
}

.auth-branding .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -50px;
}

.auth-form-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.auth-form-header {
    margin-bottom: 40px;
}

.auth-form-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.auth-form-header p {
    color: #64748b;
    font-size: 16px;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group-m {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group-m label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.input-wrapper-m {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper-m i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 18px;
    transition: all 0.2s;
}

.input-wrapper-m input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s;
    background: #f8fafc;
}

.input-wrapper-m input::placeholder {
    color: #94a3b8;
}

.input-wrapper-m input:focus {
    outline: none;
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.input-wrapper-m input:focus + i {
    color: #6366f1;
}

.btn-modern-submit {
    margin-top: 12px;
    padding: 16px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-modern-submit:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.3);
}

.modern-auth-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 15px;
    color: #64748b;
}

.modern-auth-footer a {
    color: #6366f1;
    font-weight: 700;
    text-decoration: none;
}

.modern-auth-footer a:hover {
    text-decoration: underline;
}


