/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure full viewport height */
    margin: 0;
    font-size: 16px; /* Set base font size */
    background-image: url('images/doodle.jpg'); /* Path to your background image */
    background-size: cover; /* Cover the entire background */
    background-repeat: no-repeat; /* No repeating of the background */
    background-position: center center; /* Center the background */
}

header {
    background-color:teal; /* Semi-transparent background color for header */
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end; /* Align items to the right */
}

a {
    color: inherit;
    text-decoration: none;
}

/* Container for width control */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Centering the Login Form */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 40px 0;
}

.login-form-container {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
}

/* Login Form Styles */
.login-form .form-title {
    font-size: 1.8rem;
    color: #1a73e8; /* Teal color for title */
    margin-bottom: 20px;
    text-align: center;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: #1a73e8;
}


header ul {
    list-style: none;
}

header ul li {
    margin-left: 20px; /* Adjust spacing between items */
}

header ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px; /* Increase font size */
}

header ul li button {
    background: white;
    color: teal;
    border: none;
    padding: 10px 24px;
    font-size: 16px; /* Increase font size */
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
}

.main {
    flex: 1; /* Take remaining vertical space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white; /* Set text color to white for better visibility */
  
}

.main img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.buttons button {
    margin: 0 10px;
    padding: 12px 20px;
    color: white;
    background: teal;
    font-size: 16px; /* Increase font size */
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.buttons button:hover {
    background: #006666;
}

.initiative {
    color: teal;
    margin-top: 20px;
    font-size: 16px; /* Increase font size */
    max-width: 80%;
    line-height: 1.6;
}

.footer {
    background-color: teal; /* Semi-transparent background color for footer */
    text-align: center;
    padding: 20px 0; /* Increase padding */
    width: 100%;
    margin-top: auto; /* Push footer to bottom */
}

.footer .row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.footer .row ul {
    list-style: none;
    padding: 0;
}

.footer .row ul li {
    display: inline;
}

.footer .row ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px; /* Increase font size */
}

.footer .row ul li a:hover {
    text-decoration: underline;
}




/* Responsive Design */
@media (max-width: 768px) {
    header ul {
        flex-direction: column;
        align-items: center;
    }

    header ul li {
        margin: 10px 0;
    }

    .buttons {
        flex-direction: column;
    }

    .buttons button {
        margin: 10px 0;
    }
}
