.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    box-sizing: border-box;
}


.login-form {
    background-color: #29283c;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    border: 1px solid #c792ea;
    color: #c792ea;
    width: 100%;
    max-width: 400px;
}

.login-form h2 {
    color: #c792ea;
    font-family: 'Oswald', monospace;
    margin-bottom: 20px;
    text-align: center;
}

.form-group label {
    display: block;
    color: #c792ea;
    margin-bottom: 10px;
    font-family: 'Oswald', monospace;
    text-transform: uppercase;
}

.form-group input {
    width: 95%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #c792ea;
    background-color: #1e1e2f;
    color: #ffffff;
    font-family: 'Oswald', monospace;
}

.form-group input::placeholder {
    color: #aaa;
}

button {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: none;
    background-color: #c792ea;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Oswald', monospace;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #a56de2;
    transform: translateY(-2px);
}