/* Auth Wrapper */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 2rem 1rem;
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
}

/* Brand Panel */
.auth-brand {
    background: linear-gradient(135deg, #000000 0%, #1f2937 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #f59e0b;
}

.auth-brand-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
}

.auth-brand-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: white;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-features > div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.auth-features i {
    color: #f59e0b;
}

/* Form Panel */
.auth-form-panel {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.auth-subtitle {
    color: #6b7280;
    line-height: 1.5;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.input-group {
    display: flex;
    align-items: stretch;
}

.input-icon {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f3f4f6;
    border: 2px solid #d1d5db;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #6b7280;
}

.input-group .form-input {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check input {
    cursor: pointer;
}

.form-check label {
    cursor: pointer;
    margin: 0;
}

.form-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.form-link:hover {
    text-decoration: underline;
    color: #d97706;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit i {
    display: inline-flex;
    align-items: center;
}

.form-switch {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1rem;
}

.form-hint {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f3f4f6;
    border-radius: 8px;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.security-badge i {
    color: #f59e0b;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-wrapper {
        padding: 1rem;
    }
    
    .auth-card {
        grid-template-columns: 1fr;
    }
    
    .auth-brand {
        display: none;
    }
    
    .auth-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
