/* Fondo de la página */
body {
    background: url("../img/fondo_app.webp") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: black;
}

/* Contenedor del formulario */
.login-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 350px;
}

/* Logo */
.login-container img {
    width: 120px;
    margin-bottom: 10px;
}

/* Campos de entrada */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
}

/* Botón Iniciar sesión */
button.delete-btn {
    background-color: #bb4444;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button.delete-btn:hover {
    background-color: #8a0808;
}

/* Botón Iniciar sesión */
button.login-btn {
    background-color: #2f4f2f;
    color: white;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button.login-btn:hover {
    background-color: #1d3b1d;
}

/* Botón Crear cuenta */
button.register-btn {
    background-color: #ffcc00;
    color: black;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

button.register-btn:hover {
    background-color: #e6b800;
}

/* Enlace Olvidaste tu contraseña */
.forgot-password {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Checkbox Recordarme */
.remember-me {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 14px;
}

.remember-me input {
    margin-right: 5px;
}


.checkbox-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-section {
    display: flex;
    flex-direction: column;
    text-align: right;
}


.popup {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
}

.popup button {
    background: white;
    color: black;
    border: none;
    padding: 5px 10px;
    margin-top: 10px;
    cursor: pointer;
}









