:root {
    --color-primario: #00796b;
    --color-secundario: #004d40;
    --color-fondo: #f5f5f5;
    --color-texto: #333333;
    --color-boton: #009688;
}

body {
    background-color: var(--color-fondo);
    font-family: Arial, sans-serif;
    color: var(--color-texto);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    align-items: center;
}

button {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #ccc;
}

.button {
    background-color: var(--color-boton);
    color: white;
    border: none;
    cursor: pointer;
    margin: 8px 0;
}

button:hover {
    background-color: var(--color-secundario);
}

.form-item {
    border-radius: 25px;
    padding: 10px;
    border: 1px solid #ccc;
    width: 100%;
    margin: 8px 0;
}

.flash-messages {
    margin-bottom: 1rem;
}

.flash-message.error {
    color: #fff;
    background-color: #e53935;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

.flash-message.success {
    color: #fff;
    background-color: #43a047;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
}

