﻿/* styles.css */

/* Apply a full-page green gradient background */
body {
    /* Gradient from light green to a darker green */
    background: linear-gradient(to bottom right, #bde063, #56ab2f);
    min-height: 100vh; /* Ensures gradient covers entire viewport height */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center and style the main content area */
form#form1 {
    background: rgba(255, 255, 255, 0.8); /* Light background for readability */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Text and heading styles */
h1, h2, h3, p {
    color: #333;
}

/* Button styling */
button {
    background-color: #56ab2f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

    button:hover {
        background-color: #3c8026;
    }
