/* Reset some default styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #007bff, #0056b3); /* Blue gradient background */
    color: #fff; /* White text color */
}

header {
    text-align: center;
    padding: 50px 0;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.errors {
    color: red;
    text-align: left;
}

.signup-section {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    color: #333; /* black text color */
}

.signup-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.signup-section p {
    font-size: 16px;
    margin-bottom: 20px;
}

#signup-form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="email"],
button {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.features-section {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    color: #333; /* black text color */
}

.features-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

li {
    font-size: 16px;
    margin-bottom: 10px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}
