* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensure padding does not affect the width */
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #f4f4f9; /* A light grey background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    padding: 40px;
    width: 350px;
    text-align: center;
}

.form-input {
    width: 100%; /* Full width of the form */
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc; /* Subtle border */
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #007bff; /* Highlight focus with a blue border */
    outline: none; /* Remove default focus outline */
}

.submit-button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #007bff; /* Blue button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

h2 {
    color: #333;
    margin-bottom: 20px; /* Spacing before form starts */
}
