.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

.login-left {
    background: linear-gradient(180deg, #2c3e50 0%, #1a2634 100%);
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.login-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.login-left p {
    color: #bdc3c7;
    margin-bottom: 30px;
    line-height: 1.6;
}

.login-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.login-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.login-features li i {
    font-size: 1.5rem;
    color: #e67e22;
    width: 30px;
}

.login-right {
    padding: 40px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h3 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-header p {
    color: #7f8c8d;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-label {
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
}

.login-form .input-group {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.login-form .input-group:focus-within {
    border-color: #e67e22;
    box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.25);
}

.login-form .input-group-text {
    background: #f8f9fa;
    border: none;
    color: #7f8c8d;
}

.login-form .form-control {
    border: none;
    padding: 12px 15px;
    font-size: 0.95rem;
}

.login-form .form-control:focus {
    box-shadow: none;
}

.login-form .btn-login {
    background: linear-gradient(180deg, #2c3e50 0%, #1a2634 100%);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s;
    margin-top: 10px;
}

.login-form .btn-login:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

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

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.login-divider span {
    padding: 0 10px;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.social-login {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: white;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.social-btn:hover {
    background: #e67e22;
    border-color: #e67e22;
    color: white;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.remember-me label {
    color: #7f8c8d;
    font-size: 0.9rem;
    cursor: pointer;
}

.forgot-password {
    color: #e67e22;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.alert-message {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.alert-message.show {
    display: block;
}

.alert-message i {
    margin-right: 8px;
}

.demo-credentials {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    border: 1px dashed #e0e0e0;
}

.demo-credentials p {
    margin: 0;
    color: #2c3e50;
    font-size: 0.85rem;
}

.demo-credentials small {
    color: #7f8c8d;
    display: block;
    margin-top: 5px;
}

.demo-credentials .badge {
    background: #e67e22;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .login-left {
        min-height: auto;
        padding: 30px;
    }

    .login-right {
        min-height: auto;
        padding: 30px;
    }
}
