body, html {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
}

.form-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 16px;
}

#submitBtn {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

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

.menu {
    background-color: #007BFF;
    color: white;
    padding: 20px;
    font-size: 24px; /* Adjusted for better visibility */
    text-align: center; /* Center the text */
    width: 100%;
    box-sizing: border-box;
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%; /* Make the input take the full parent width */
    box-sizing: border-box; /* Include padding and border in the element's total width */
    margin-bottom: 10px; /* Add some space between the inputs */
    padding: 8px; /* Adjust padding as needed */
    border: 1px solid #ccc; /* Adjust border as needed */
}

/* If you're using a container for the form or inputs, ensure it has padding */
.form-container {
    padding: 0 15px; /* Adjust container padding as needed */
}

