﻿body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: url('/Imagenes/imagenMesAppStock.png') no-repeat left center fixed;
    background-size: contain;
    background-color: #000; /* o cualquier otro color de fondo */
    font-size: 10px;
}

.background-overlay {
    /*position: fixed;*/
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscurece el fondo */
    z-index: -1;
}

.login-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    padding-right: 10%;
}

.login-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

    .login-card h3 {
        margin-bottom: 1.5rem;
        color: #343a40;
        font-weight: 600;
        text-align: center;
    }

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    padding-left: 10px;
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #2575fc;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
}

    .btn-login:hover {
        background-color: #1a5bbd;
    }

.forgot-password {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

    .forgot-password a {
        color: #007bff;
        text-decoration: none;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }
