/* 🎨 General Body and Centering */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container for the login form */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Form styling */
form {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

form h2 {
    text-align: center;
    color: #2f3640;
    font-size: 1.8em;
    margin-bottom: 20px;
}

/* Input styling */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Button styling */
button {
    width: 100%;
    padding: 12px;
    background-color: #0984e3;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #74b9ff;
}

/* Links under the form */
.links {
    text-align: center;
    margin-top: 15px;
}

.links a {
    color: #0984e3;
    text-decoration: none;
    font-size: 14px;
}

.links a:hover {
    text-decoration: underline;
}

/* Error message styles */
.error {
    background-color: #ffcccc;
    color: #ff4d4d;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}
