/* Maxliss Admin Login Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --maxliss-primary: #A7004D;
    --maxliss-secondary: #FFE2EC;
    --maxliss-dark: #7D0039;
    --maxliss-light: #FFB3D1;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFE2EC 0%, #A7004D 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

.professional-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(167, 0, 77, 0.1);
    box-shadow: 
        0 25px 50px -12px rgba(167, 0, 77, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    padding: 48px;
    width: 100%;
    max-width: 440px;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #A7004D 0%, #FFE2EC 50%, #A7004D 100%);
}

.brand-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #A7004D 0%, #7D0039 100%);
    border-radius: 20px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 8px 25px rgba(167, 0, 77, 0.3);
}

.logo-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #A7004D, #FFE2EC, #A7004D);
    border-radius: 22px;
    z-index: -1;
}

.brand-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #A7004D 0%, #7D0039 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    color: #666;
    font-weight: 500;
    margin-top: 8px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #A7004D;
    margin-bottom: 8px;
    letter-spacing: 0.025em;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    background: #FAFAFA;
    transition: all 0.3s ease;
    color: #374151;
}

.form-input:focus {
    outline: none;
    border-color: #A7004D;
    background: white;
    box-shadow: 0 0 0 4px rgba(167, 0, 77, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

.remember-container {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #A7004D;
    margin-right: 12px;
}

.checkbox-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #A7004D 0%, #7D0039 100%);
    color: white;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(167, 0, 77, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0px);
}

.error-alert {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    border: 1px solid #F87171;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: #DC2626;
    font-size: 14px;
    font-weight: 500;
}

.error-alert .flex {
    display: flex;
}

.error-alert .items-start {
    align-items: flex-start;
}

.error-alert .mr-3 {
    margin-right: 12px;
}

.error-alert .mt-0\.5 {
    margin-top: 2px;
}

.error-alert .mb-1 {
    margin-bottom: 4px;
}

.error-alert .last\:mb-0:last-child {
    margin-bottom: 0;
}

.security-badge {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.security-text {
    color: #9CA3AF;
    font-size: 12px;
    font-weight: 500;
}

.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, #A7004D 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #A7004D 2px, transparent 2px);
    background-size: 100px 100px;
    pointer-events: none;
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-card {
        padding: 32px 24px;
        margin: 16px;
    }
    
    .brand-title {
        font-size: 28px;
    }
    
    .logo-container {
        width: 70px;
        height: 70px;
    }
}