/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light gray background for contrast */
    margin: 0;
    padding: 0;
}

/* Container for Forms and Content */
.container {
    max-width: 400px;
    margin: 50px auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 2px solid forestgreen; /* Border to emphasize forest green */
    padding-bottom: 40px; /* Space at the bottom to prevent cutoff */
    position: relative; /* Makes sure content inside adjusts well */
}

/* Headings */
h1 {
    font-size: 24px;
    color: forestgreen; /* Forest green for titles */
    text-align: center;
    margin-bottom: 20px; /* Add margin below heading */
}

/* Email inside the h1 */
.email {
    display: inline-block;
    word-wrap: break-word;
    max-width: 100%; /* Ensure email stays within container */
    color: #333; /* Ensure visibility */
}

/* Labels for form fields */
label {
    font-size: 14px;
    color: #34495e; /* Dark gray for labels */
    margin-bottom: 5px;
    display: block;
}

/* Input Fields */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Buttons */
button {
    width: 100%;
    padding: 10px;
    background-color: forestgreen; /* Forest green for buttons */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #228b22; /* Darker forest green on hover */
}

/* reCAPTCHA */
.g-recaptcha {
    margin-bottom: 15px;
}

/* Links */
a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #3498db; /* Blue for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Additional Styles for the Dashboard and Sections */
.dashboard-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #e0f7e0; /* Light green background for sections */
    border-left: 5px solid forestgreen; /* Forest green left border for emphasis */
    margin-bottom: 20px; /* Add spacing to bottom of sections */
}

/* Footer adjustments (if in use within a section) */
.footer {
    text-align: center;
    padding: 10px 0;
    background-color: #f8f9fa;
    font-size: 12px; /* Adjust font size */
}
