body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

.login, .registro {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo semitransparente */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sombra */
}

.login h2, .registro h2 {
    text-align: center;
}

.login input[type="text"], .login input[type="password"],
.registro input[type="number"], 
.registro input[type="text"], .registro input[type="password"],
.registro input[type="email"], .registro input[type="submit"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login input[type="button"], .registro input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    background-color: #ff4d29; /* Color de fondo del botón */
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.login input[type="button"]:hover, .registro input[type="submit"]:hover {
    background-color: #ff4d29; /* Color de fondo del botón al pasar el ratón */
}

.login a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #555;
    text-decoration: none;
}

.login a:hover, .registro a:hover {
    text-decoration: underline;
    color: #333;
}
