* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    }
    body {
    background-color: #121212;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 1rem;
    }
    .login-box {
    background-color: #1e1e1e67;
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    margin: 3.5rem 0;
    color: #484e54;
    }
    .login-box h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    }
    .form-group {
    margin-bottom: 1rem;
    }
    .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    }
    .form-group input {
    width: 100%;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border: none;
    border-radius: 5px;
    color: #fff;
    }
    button {
        width: 100%;
        padding: 0.75rem;
        background-color: #333;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 1rem;
    }
    button:hover {
        background-color: #444;
    }
    .footer-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
    }
    .footer-text a {
    color: #90caf9;
    text-decoration: none;
    }
    .footer-text a:hover {
    text-decoration: underline;
    }
    .login-link {
        text-align: center;
        margin-top: 1rem;
        font-size: 0.9rem;
        color: #484e54;
    }
    .login-link a {
        color: #90caf9;
        text-decoration: none;
    }
    .login-link a:hover {
        text-decoration: underline;
    }