* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Side - Login Form */
.login-left {
    flex: 1;
    background-color: #0a0a0a;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    background-size: 100px 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.logo-section {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 72px;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 12px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.brand-tagline {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 400;
    color: #d4af37;
    letter-spacing: 8px;
    border-top: 2px solid #d4af37;
    padding-top: 15px;
    margin-top: 10px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.login-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.flash-messages {
    margin-bottom: 20px;
}

.alert {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: #d4af37;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-options {
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ccc;
    font-size: 14px;
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #d4af37;
}

.remember-me span {
    user-select: none;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-login {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #d4af37 0%, #c5a028 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-login:hover {
    background: linear-gradient(135deg, #e5c048 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.forgot-password {
    text-align: center;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #e5c048;
    text-decoration: underline;
}

/* Right Side - Info Section */
.login-right {
    flex: 1;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.login-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    pointer-events: none;
}

.info-section {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.info-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 600;
}

.info-section p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.services-list {
    list-style: none;
    margin-bottom: 40px;
}

.services-list li {
    color: #fff;
    font-size: 16px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 24px;
    line-height: 1;
}

.services-list li:hover {
    color: #d4af37;
    padding-left: 40px;
}

.contact-info {
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-info p {
    margin: 0;
    font-size: 15px;
}

.contact-info a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #e5c048;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-left,
    .login-right {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 50vh;
    }
    
    .login-left {
        padding: 40px 20px;
    }
    
    .login-right {
        padding: 40px 20px;
    }
    
    .brand-name {
        font-size: 48px;
        letter-spacing: 8px;
    }
    
    .brand-tagline {
        font-size: 18px;
        letter-spacing: 4px;
    }
    
    body {
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .login-left {
        padding: 30px 20px;
    }
    
    .logo-section {
        margin-bottom: 40px;
    }
    
    .brand-name {
        font-size: 36px;
        letter-spacing: 6px;
    }
    
    .brand-tagline {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .login-form {
        padding: 30px 20px;
    }
    
    .info-section h3 {
        font-size: 24px;
    }
}
