/* CSS file mostly curtosy of AI */

/* Base Reset and Styling */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, sans-serif;
    background: #f3f6fa;
    color: #333;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

/* Form Container */
form {
    background: white;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 360px;
}

/* Labels and Inputs */
label {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 0.25rem;
    text-align: center;
}

input[type="password"],
input[type="submit"] {
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* Submit Button */
input[type="submit"] {
    background-color: #357edd;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

input[type="submit"]:hover {
    background-color: #285ec4;
}
