/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container styling */
.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    text-align: center; /* Center-align all text inside */
}

/* Heading styling */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Form styling */
form {
    margin-top: 20px; /* Adds space between heading and form */
    text-align: left; /* Align form elements to the left */
}

/* Label styling */
label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

/* Input field styling */
input[type="text"],
input[type="password"] {
    width: 98%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Submit button styling */
input[type="submit"] {
    width: 98%;
    padding: 10px;
    background-color: #28a745;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #218838;
}
