/* Reset + base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333333;
    line-height: 1.6;
}

/* Header */
.main-header {
    background-color: #333333;
    padding: 20px 0;
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.council-logo,
.nbb-logo {
    max-height: 70px;
}

/* Layout */
.landing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: flex-start;
    padding: 40px 20px;
    gap: 50px; 
}

.benefits-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #333;
    font-size: 1rem;
}

/* Left Column */
.info-column {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.info-column h1 {
    font-size: 2.2rem;
    color: #99CC00;
    margin-bottom: 20px;
}

.info-column p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.info-column ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.info-column li {
    margin-bottom: 10px;
}

/* Alert box */
.alert-box {
    background-color: #fff3cd;
    color: #856404;
    border-left: 6px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Help links */
.help-links {
    margin-top: 20px;
    font-size: 0.95rem;
}

.help-links a {
    color: #004085;
    text-decoration: none;
    margin-right: 10px;
}

.help-links a:hover {
    text-decoration: underline;
}

/* Chat */
.chat-placeholder {
    background-color: #e9ecef;
    border: 1px dashed #ccc;
    padding: 12px;
    font-style: italic;
    font-size: 0.95rem;
    border-radius: 5px;
    margin-top: 20px;
}

/* Right Column */
.login-column {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.login-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 1rem;
}

button[type="submit"] {
    background-color: #99CC00;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #85b300;
}

.login-links {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}

.login-links a {
    color: #004085;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}

/* Error Message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333333;
    color: white;
    margin-top: 60px;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 900px) {
    .landing-container {
        flex-direction: column;
        padding: 20px;
    }

    .logo-container {
        flex-direction: column;
        gap: 15px;
    }
}

/* Page height + center vertically */
body, html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

/* Optional: keep the main content centered vertically */
.landing-container {
    flex: 1;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Slightly tighter layout width control */
.info-column,
.login-column {
    max-width: 480px;
}

/* Align the alert box and chat with rest of the layout */
.alert-box,
.chat-placeholder {
    max-width: 100%;
}

/* Optional: soften the button shadow for polish */
button[type="submit"] {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.green-title {
    color: #4ba327;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.2;
}

.red-warning {
    color: #cc0000;
    font-weight: bold;
    margin: 10px 0 15px 0;
}

.benefits-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.alert-box {
    background: #fff7cc;
    border-left: 4px solid #e6c200;
    padding: 10px 12px;
    margin: 20px 0;
}

.help-links {
    margin-top: 15px;
}

.help-links a {
    text-decoration: none;
    color: #005bac;
    font-weight: 500;
}

.help-links a:hover {
    text-decoration: underline;
}
