:root {
    --primary-color: #2e7d32;
    --accent-color: #00bcd4;
    --light-color: #f5f5f5;
    --dark-color: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.auth-container {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-logo img {
    width: 100px;
    margin-bottom: 1rem;
}

.auth-logo h2 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

.auth-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-btn:hover {
    background-color: #245a27;
}

.auth-footer {
    margin-top: 2rem;
    color: #777;
    font-size: 0.8rem;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: #008ba3;
    text-decoration: underline;
}

.auth-footer {
    margin-top: 1rem;
    text-align: center;
}

.maintenance-message {
    text-align: center;
    padding: 20px 0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.maintenance-message h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.maintenance-message p {
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.5;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle i {
    color: var(--primary-color);
    font-size: 36px;
}

.additional-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-btn.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin: 10px 0;
}

.auth-btn.secondary:hover {
    background-color: #f5f5f5;
}