/* Body Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background-image: url('../images/face.jpeg'); /* Update path as needed */
    background-size: cover;
    background-position: center;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #070101;
}

/* Form Container Styling */
.form-container {
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

/* Heading Styles */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Input Field Styling */
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

/* Button Styling */
button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

/* Message Styling */
#message {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

/* Footer Styling */
footer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}
