body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-container {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}
.login-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.input-group {
    margin-bottom: 1.2rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    background-color: #2b2b2b;
    color: #ffffff;
}
input[type="submit"] {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
    background-color: #6200ee;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}
input[type="submit"]:hover {
    background-color: #3700b3;
}
.forgot-password {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #bb86fc;
    text-decoration: none;
}
.forgot-password:hover {
    text-decoration: underline;
}
