/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    color: #000000; /* Black text */
	font-size: 1em;
}

/* Body styling with background image */
body {
    background-image: url('bg.jpg'); /* Background image */
    background-size: cover; /* Ensure the image covers the entire background */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: .85em;
}

/* Centering the form */
.form-container {
    background-color: #ffffff; /* White background for the form */
    padding: 40px;
    border: 1px solid #000000; /* Black border around the form */
    border-radius: 10px;
    width: 100%;
    max-width: 500px; /* Limit the width of the form */
}

/* Styling for form elements */
input[type="text"],
input[type="email"],
textarea {
    width: 100%; /* Full width for inputs */
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #000000; /* Black border */
    border-radius: 5px;
    background-color: #ffffff; /* White background for inputs */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: #000000; /* Black border on focus */
    outline: none;
}

textarea {
    resize: vertical; /* Allow vertical resizing */
}

/* Button styling */
button {
    width: 100%; /* Full width for button */
    background-color: #fa0946; /* Red button */
    padding: 12px;
    border: 1px solid #fa0946; /* Red border for button */
    border-radius: 5px;
    text-transform: lowercase; /* All lowercase text */
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #ffffff; /* White text */
}

button:hover {
    background-color: #ffffff; /* White on hover */
    color: #000000; /* Black text */
    border: 1px solid #000000; /* Black border for button */
}

/* Notification styling */
.notification {
    background-color: #ffffff; /* White background */
    color: #fa0946; /* Red text */
    padding: 15px;
    border: 1px solid #000000; /* Black border */
    border-radius: 5px;
    margin-bottom: 8px;
    text-align: center;
}

h1 {
    text-align: center;
    margin-bottom: 6px;
	font-size: 1.3em;
}

p {
    text-align: center;
	font-size: .9em;
}

a:link {
    color: #A9A9A9; /* Gray text */
	text-decoration: none; 
}

a:visited {
    color: #A9A9A9; /* Gray text */
	text-decoration: none; 
}

a:hover {
    color: #A9A9A9; /* Gray text */
	text-decoration: underline; 
}

a:active {
    color: #A9A9A9; /* Gray text */
	text-decoration: none; 
}

.signup-list-page .form-container {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #000000;
    border-radius: 10px;
    width: 100%;
    max-width: 90%;
}