/* WRAPPER */
.login-wrapper {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
    position: relative;
    overflow: hidden;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 70%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px;
    opacity: 0.3;
}

.login-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.1) 50%, transparent 52%);
    background-size: 50px 50px;
    opacity: 0.2;
}

/* LEFT SIDE - REMOVED */

/* RIGHT SIDE */
.login-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 80px;
    position: relative;
    z-index: 1;
}

/* CARD */
.auth-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
}

/* INPUT */
.auth-input {
    width: 90%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.auth-input:focus {
    outline: none;
    border-color: #4e73df;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.1);
}

/* BUTTON */
.auth-button {
    width: 100%;
    padding: 15px;
    background: #162e53 !important;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-button:hover {
    background: #2e59d9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(78, 115, 223, 0.3) !important;
}

/* LINKS */
.auth-link {
    font-size: 14px;
    color: #4e73df;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #2e59d9;
    text-decoration: underline;
}

/* LOGO STYLES */
.auth-logo {
    margin-bottom: 30px;
}

.auth-logo h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 400;
}

.auth-forgot-link {
    text-align: right;
    margin-bottom: 20px;
}

.auth-form {
    text-align: left;
}

/* MOBILE */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
    }

    .login-left {
        height: 200px;
    }
}