/* css/style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: left; /* Ensures text is aligned to the left */
}

.login-form h2 {
    margin-bottom: 20px;
    text-align: center; /* Center the heading */
}

.login-form label {
    display: inline-block;
    width: 100px; /* Fixed width for labels */
    margin-bottom: 8px;
}

.login-form input {
    width: calc(100% - 110px); /* Adjusted to account for label width, padding, and border */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding and border are included in the width */
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #DD514A; /* Updated button color */
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #C94A42; /* Updated hover color */
}

.forgot-password {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: #DD514A;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}
