/* public/css/login-custom.css */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-color: #ff7e5f;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Sisi Kiri - Ilustrasi */
.login-side-info {
    flex: 1.2;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
    position: relative;
}

.login-side-info::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}

.info-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.info-content h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.info-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Sisi Kanan - Form */
.login-side-form {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.form-box {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.form-box h2 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.form-box p {
    color: #777;
    margin-bottom: 30px;
}

.form-control {
    background: #f8f9fa;
    border: 1px solid #eee !important;
    padding: 12px 15px;
    border-radius: 8px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #764ba2 !important;
    background: white;
}

.btn-login {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.2s;
    margin-top: 20px;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 75, 162, 0.3);
    color: white;
}

.alert {
    border-radius: 8px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .login-side-info {
        display: none;
    }

    .login-side-form {
        padding: 40px;
    }
}