/* Modern Split Login Page Styles */

body.login-split {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow: hidden;
}

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

/* LEFT SIDE - IMAGE */
.login-left {
    flex: 1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.login-left-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.login-left-content img {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.login-left-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

.login-left-content p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* RIGHT SIDE - FORM */
.login-right {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 450px;
}

.login-form-wrapper .logo-small {
    text-align: center;
    margin-bottom: 40px;
}

.login-form-wrapper .logo-small img {
    height: 50px;
}

.login-form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
}

.login-form-wrapper p.subtitle {
    color: #64748b;
    font-size: 16px;
    margin: 0 0 40px 0;
}

.login-form {
    width: 100%;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-group .input-wrapper {
    position: relative;
}

.form-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.form-group input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

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

.form-actions {
    margin-top: 35px;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.btn-login:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.btn-login i {
    margin-right: 8px;
}

.copyright-text {
    text-align: center;
    margin-top: 30px;
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }
    
    .login-left {
        min-height: 300px;
    }
    
    .login-left-content h1 {
        font-size: 32px;
    }
    
    .login-left-content p {
        font-size: 16px;
    }
}

