/* Estilização do formulário */
.auth-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.auth-form button {
    width: 100%;
    padding: 10px;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.auth-form button:hover {
    background-color: #45a049;
}

/* Estilização dos links */
.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: #666;
    text-decoration: none;
    margin-right: 10px;
}

.auth-links a:hover {
    color: #000;
}

/* Estilização das mensagens de erro */
.auth-errors {
    color: #ff0000;
    text-align: center;
    margin-bottom: 10px;
}