body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #DB4437;
    width: 350px; /* Slightly wider for better spacing */
}

h2 {
    color: #DB4437;
    margin-bottom: 15px;
}

label {
    font-size: 16px;
    color: #FF4B2B;
    display: block;
    text-align: left;
    margin-bottom: 5px;
}

input {
    width: 100%; /* Full width for better alignment */
    padding: 12px; /* Slightly bigger padding for a modern feel */
    border: 2px solid #DB4437;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    display: block;
    margin-bottom: 10px;
}

.error {
    color: #DB4437;
    font-size: 14px;
    display: none;
    margin-bottom: 10px;
    text-align: left;
}

button {
    width: 100%; /* Matches input width */
    background: linear-gradient(to right, #FF416C, #FF4B2B);
    color: white;
    border: none;
    padding: 12px; /* Matching input padding */
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    display: block;
}

button:hover {
    background: #DB4437;
}
