/* Basic reset for margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Center the form container using Flexbox */
body {
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
}

/* Form container styling */
.form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%; /* Full width but controlled by max-width */
    max-width: 400px; /* Make the form small */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Header styling with color and bold look */
h2 {
    font-size: 26px; /* Larger font size for the header */
    margin-bottom: 20px;
    color: #2c3e50; /* Rich, classic color */
    font-weight: 700; /* Bold weight */
    text-transform: uppercase; /* Make it uppercase for a strong look */
    letter-spacing: 2px; /* Slightly increase letter spacing for a classic feel */
}

/* Form group styling */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Label styling */
label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

/* Input fields styling */
input, select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    box-sizing: border-box;
}

/* Focus effects on input fields */
input:focus, select:focus {
    outline: none;
    border-color: #007bff;
}

/* Submit button styling */
button.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button.submit-btn:hover {
    background-color: #0056b3;
}
