/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f8ff; /* Light blue background for a fresh look */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full-screen height */
}

.hero {
    background-color: #ffffff; /* White background for form container */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    padding: 30px;
    width: 90%;
    max-width: 400px; /* Limit width for better responsiveness */
    text-align: center;
}

/* Heading Styles */
.hero h1 {
    font-size: 2rem;
    color: #007bff; /* Blue color for heading */
    margin-bottom: 20px;
}

/* Error Message */
.hero p {
    font-size: 0.9rem;
    color: red;
    margin-bottom: 15px;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    font-size: 1rem;
    color: #333; /* Dark text for labels */
    margin: 10px 0 5px;
    align-self: flex-start; /* Align labels to the left */
}

form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

form input:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button Styles */
form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff; /* Blue button */
    color: #ffffff; /* White text */
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

form button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    form input, form button {
        font-size: 0.9rem;
    }
}
