/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply Lato font to the entire document */
body {
    font-family: 'Lato', sans-serif;
}

/* Center the container */
.container {
    max-width: 960px; /* Adjust as needed */
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1; /* Ensure container stays above background */
}

/* Styling for forms */
form {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Styling for links */
a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

a:hover {
    background-color: #0056b3;
}

/* Remove bullets from lists */
ul, ol {
    list-style-type: none;
}
