@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');



/* Reset some basic elements */
body, h2, form {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    margin: 0; /* Remove default margin */
    display: flex;
}

.content-container {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    width: 100%;
    max-width: 400px; /* Maximum width */
    margin: auto; /* Center the container itself */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 8px;
}
/* Form container */
form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px; /* Maximum width */
    font-size: 18px;
}

/* Form elements styling */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 18px;
}

/* Submit button styling */
input[type="submit"] {
    width: 100%;
    background-color: #111;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

input[type="submit"]:hover {
    background-color: #222;

}

/* Error message styling */
p {
    color: red;
    text-align: center;
    font-size: 18px;
}

/* Aligning the title */
h2 {
    text-align: center;
    margin-bottom: 20px;
}

