body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0 10px; /* Add padding to body to ensure form doesn't touch the edges */
}

.form-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Increased max-width */
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box; /* Ensure padding is included in the total width */
}

.form-container:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.logo img {
    max-width: 120px;
    margin-bottom: 20px;
}

form h5 {
    margin-top: 2px;
    margin-bottom: 20px;
    color: #4e4e4e;
    font-size: 0.9em;
}

form .section {
    margin-bottom: 20px;
    text-align: left;
}

.input-group {
    display: flex;
    gap: 10px; /* Space between the input elements */
}

.input-half {
    flex: 1;
}




form .section label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.9em;
}

form .section input[type="text"],
form .section input[type="email"],
form .section select {
    width: 100%;
    padding: 10px;
    margin-bottom: 2px;
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: border-color 0.3s;
    box-sizing: border-box; /* Ensure padding is included in the total width */
}

form .section input[type="text"]:focus,
form .section input[type="email"]:focus,
form .section select:focus {
    border-color: #007bff;
}

form .error {
    color: red;
    font-size: 0.8em;
    margin-top: 4px;
}

form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
    margin-top: 10px;
}

form input[type="submit"]:hover {
    background-color: #0056b3;
}

form input[type="submit"]:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

footer {
    margin-top: 20px;
    font-size: 0.8em;
    color: #888;
}

.required {
    color: red;
}
