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

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

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

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

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

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

