/* assets/css/login.css */
body {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
}

.login-left,
.login-right {
    padding: 3rem;
    flex: 1;
    min-width: 300px;
}

.login-left {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right {
    background: transparent;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-title {
    margin-bottom: 0.5rem;
    background: -webkit-linear-gradient(#0d6efd, #6610f2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    background: #f8f9fa;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
    border-color: #8bb9fe;
    background: #fff;
}

.btn-primary {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    background: linear-gradient(to right, #0d6efd, #0b5ed7);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-google {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #6c757d;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.divider::before {
    margin-right: .5em;
}

.divider::after {
    margin-left: .5em;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column-reverse;
        max-width: 450px;
    }

    .login-right {
        display: none;
        /* Hide illustrative side on mobile to save space */
    }

    .login-left {
        border-radius: 20px;
    }
}