body {
    min-height: 100vh;
    /*background: linear-gradient(135deg, rgba(0,65,106,0.95), rgba(228,229,230,0.9)), url('https://www.transparenttextures.com/patterns/diagonal-stripes.png');*/
    background: url('../img/fondo_login.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo de tu empresa en esquina superior derecha */
.brand-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    max-height: 50px;
    z-index: 10;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
    max-width: 380px;
}

.client-logo {
    max-height: 70px;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in-out;
}

.form-control {
    border-radius: 10px;
    padding: 10px;
}

.btn-login {
    border-radius: 10px;
    background: #00416A;
    color: white;
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-login:hover {
        background: #006699;
        transform: scale(1.02);
    }

.forgot-link {
    font-size: 0.9rem;
    color: #00416A;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .forgot-link:hover {
        color: #006699;
        text-decoration: underline;
    }

.footerLogin {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    /*background-color: #f8f9fa;*/
    background-color: rgb(36, 91, 167);
    border-top: 1px solid #e7e7e7;
    text-align: center;
    /*color: #6c757d;*/
    color: white;
    font-size: 18px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
