/* Main color variables */
:root {
    --primary-color: #1a7e3c; /* Darker green */
    --primary-dark: #155c2d; /* Even darker green */
    --primary-light: #75b78e; /* Darker shade of light green */
    --accent-color: #0e6954; /* Darker teal */
    --text-color: #333333;
    --light-text: #7f8c8d;
    --background: #f9f9f9;
    --card-bg: #ffffff;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

body {
    background-color: #f8f9fa;
}

.login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
