﻿
@keyframes AnimacionFondo{

    100%{
        background-position: 15% 30%
    }
}

body {
    
    background-image: url('../../resources/07-blue-style-blur-gradients.png');
    background-repeat: no-repeat;
    animation: AnimacionFondo 6s infinite alternate linear;
}







.ContenedorPrincipal {
    margin-top: 10%;
    background: rgba(255, 255, 255, 0.85); /* un poco más opaco para mejor legibilidad */
    padding: 35px;
    border-radius: 12px; /* bordes más suaves */
    box-shadow: 0 8px 25px rgba(0,0,0,0.3); /* sombra más difusa */
    backdrop-filter: blur(8px); /* más blur para efecto vidrio */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .ContenedorPrincipal:hover {
        transform: translateY(-5px); /* efecto flotante */
        box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    }


#btniniciarsesion {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border: none;
    font-weight: 600;
    border-radius: 25px;
    padding: 12px;
    transition: all 0.3s ease;
}

    #btniniciarsesion:hover {
        background: linear-gradient(135deg, #00f2fe, #4facfe);
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.TextoBlanco {
    color: #2c3e50; /* azul grisáceo elegante */
}
