body {
    font-family: Arial, sans-serif;
    margin: 0; /* Minimize unnecessary space */
    padding: 0; /* Minimize unnecessary space */
    background-color: #f0f0f0; /* Default background color */
    background-image: url('background.jpg'); /* Adds background image from the css folder */
    background-size: cover; /* Cover the entire page */
    background-attachment: fixed; /* Keep the background image fixed during scrolling */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-position: center; /* Center the background image */
  }

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
}

.signup-link a {
    color: #4CAF50;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

button#guestSignIn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;  /* A different shade to distinguish it from the main submit button */
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px; /* Optional: adds some space between this button and others */
}

button#guestSignIn:hover {
    background-color: #0056b3;
}
