* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f8f9fa;
}

.top-bar {
    height: 24px;
    background: linear-gradient(90deg, #077C6A 0%, #0a9580 100%);
    width: 100%;
}

.login-container {
    display: flex;
    min-height: calc(100vh - 24px);
    height: auto;
}

/* Left side - Image */
.login-image {
    flex: 1;
    background: #F5F5F0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.login-image img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

/* Right side - Login Form */
.login-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: white;
    overflow-y: auto;
    max-height: 100vh;
}

.logo {
    margin-bottom: 40px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.login-subtitle {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.form {
    max-width: 480px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.password-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
    border-color: #077C6A;
    box-shadow: 0 0 0 3px rgba(7, 124, 106, 0.1);
}

.form-group input::placeholder {
    color: #9CA3AF;
}

.forgot-password {
    font-size: 13px;
    color: #077C6A;
    text-decoration: none;
    font-weight: 500;
}

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

.checkbox-group {
    margin-bottom: 32px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #077C6A;
}

.checkbox-label span {
    font-size: 14px;
    color: #374151;
}

.btn-login {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #077C6A;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #066658;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(7, 124, 106, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.error-message {
    margin-top: 20px;
    padding: 14px;
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 8px;
    font-size: 14px;
    border-left: 4px solid #DC2626;
}

/* Responsive */
@media (max-width: 1024px) {
    .login-image {
        display: none;
    }
    
    .login-form {
        padding: 40px;
    }
}

@media (max-width: 640px) {
    .login-form {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 24px;
    }
    
    .logo-img {
        height: 50px;
    }
}
