/* Ejemplo basado en estilos que usas */
body {
    background: #1e1e2f;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
}

.container {
    background: rgba(40, 40, 60, 0.85);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.mensaje {
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
}

.mensaje.exito {
    background-color: #009933; /* verde */
    color: white;
}

.mensaje.error {
    background-color: #cc0000; /* rojo */
    color: white;
}

.btn {
    display: inline-block;
    background: #00bfff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #009acd;
}

.btn-group {
    margin-top: 15px;
}
