/* login.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center all content */
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.login-box p {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

.input-group {
    margin-bottom: 15px;
    text-align: left; /* Keep labels and inputs aligned to the left */
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.input-group input:focus {
    outline: none;
    border-color: #007bff;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #0056b3;
}

.footer {
    text-align: center;
    margin-top: 15px;
}

.footer a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

/* Logo Styling */
.logo {
    display: block;
    margin: 0 auto 20px; /* Center the logo and add margin to bottom */
    width: 250px;
    height: auto;
}
