.content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 1rem;
    margin: 100px auto;
    width: 50%;
    text-align:left;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-form input {
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #1C2230;
    color: white;
}

.login-form button {
    padding: 0.75rem;
    background-color: #E5C07B;
    color: #0A0A0A;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
}

.message {
    font-size: 0.9rem;
    color: #B4BCC2;
}

.message a {
    color: #F5D547;
    text-decoration: none;
}