/* Login Page Custom Styles */
body {
    background: #f8fffe;
    font-family: 'Inter', sans-serif;
}

.login-container {
    display: flex;
    min-height: 100vh;
}

.left-panel {
    flex: 1;
    background: #e6f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.left-content {
    text-align: center;
    max-width: 500px;
}

.left-content img {
    max-width: 350px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(17, 109, 124, 0.1);
}

.left-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #116D7C;
    margin-bottom: 15px;
}

.left-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.right-panel {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.login-form {
    width: 100%;
    max-width: 400px;
}

.logo-section h1 {
    color: #116D7C;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.logo-section p {
    color: #64748b;
}

.form-label {
    color: #116D7C;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    background: #fafafa;
}

.form-control:focus {
    border-color: #116D7C;
    box-shadow: 0 0 0 3px rgba(17, 109, 124, 0.1);
    background: white;
}

.login-btn {
    background: #116D7C;
    border: none;
    border-radius: 8px;
    color: white;
    padding: 14px;
    font-weight: 500;
    width: 100%;
    transition: all 0.2s ease;
}

.login-btn:hover {
    background: #0d5a66;
    transform: translateY(-1px);
}

.language-btn {
    background: rgba(255, 187, 16, 0.1);
    border: 1px solid rgba(255, 187, 16, 0.3);
    color: #116D7C;
    border-radius: 6px;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.language-btn:hover {
    background: rgba(255, 187, 16, 0.2);
    color: #116D7C;
    text-decoration: none;
}

.password-toggle:hover {
    color: #116D7C;
}

@media (max-width: 1024px) {
    .login-container {
        flex-direction: column;
    }
    
    .left-panel {
        min-height: 40vh;
    }
    
    .right-panel {
        padding: 40px 20px;
    }
}