/* Login Page Styles */
.login-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.login-left {
    background: linear-gradient(135deg, #00acc1 0%, #00838f 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-brand {
    text-align: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

    .brand-logo i {
        font-size: 3rem;
    }

.login-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.login-left p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 2rem;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

    .feature-item i {
        font-size: 1.5rem;
        width: 40px;
        text-align: center;
    }

.login-right {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-container {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-header h2 {
        font-size: 2rem;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .login-header p {
        color: #666;
        font-size: 1rem;
    }

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

    .login-form label i {
        color: #00acc1;
        width: 16px;
    }

.login-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .login-form input:focus {
        outline: none;
        border-color: #00acc1;
        box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.1);
    }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

    .checkbox-label input[type="checkbox"] {
        width: auto;
        margin: 0;
    }

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    position: relative;
}

.forgot-password {
    color: #00acc1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: #00838f;
    }

.login-footer {
    text-align: center;
    margin-top: 2rem;
}

    .login-footer p {
        color: #666;
        margin-bottom: 1rem;
    }

    .login-footer a {
        color: #00acc1;
        text-decoration: none;
        font-weight: 600;
    }

        .login-footer a:hover {
            color: #00838f;
        }

.back-to-home {
    margin-top: 1.5rem;
}

/* Demo Info */
.demo-info {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.demo-toggle {
    background: #00acc1;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

    .demo-toggle:hover {
        background: #00838f;
        transform: translateY(-2px);
    }

.demo-content {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 300px;
}

    .demo-content h4 {
        color: #333;
        margin-bottom: 1rem;
        text-align: center;
    }

.demo-users {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-user {
    padding: 0.75rem;
    background: #e0f7fa;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 4px solid #00acc1;
}

    .demo-user strong {
        color: #00acc1;
    }

.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .login-left {
        display: none;
    }

    .login-right {
        padding: 2rem;
    }

    .demo-info {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
    }

    .demo-content {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .login-page {
        padding: 1rem;
    }

    .login-right {
        padding: 1.5rem;
    }

    .login-left h1 {
        font-size: 2rem;
    }

    .brand-logo {
        font-size: 1.5rem;
    }
}
