/* Styles for the Join List page */
.join-list-container {
    background-color: white;
    padding: 40px;
    margin: 40px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.join-list-container h1 {
    font-family: Arial, sans-serif;
    color: #003333;
    text-align: left;
}

.join-list-container p {
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.join-list-container .required {
    color: #FF69B4; /* Pink color */
    margin-left: 5px; /* Adds some spacing between label text and asterisk */
    font-weight: bold;
}


form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

input[type="checkbox"] {
    margin-right: 10px;
}

button[type="submit"] {
    background-color: #66CC33;
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button[type="submit"]:hover {
    background-color: #559922;
}
