body,html{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    height: 100%;
}
body{
    /* background: linear-gradient(to bottom,#3e67ce ,white ); */
    /* background: rgb(7,52,174);
    background: linear-gradient(3deg, rgba(7, 51, 174, 0.637) 0%, rgba(255,255,255,1) 99%); */
    background-color: #ffffff; /* Fondo claro para un aspecto fresco y limpio */
    color: #333; 
    font-family: 'Roboto', sans-serif; 
    background-color: white;
    display: flex;
flex-direction: column;
min-height: 100vh;
}



.animation-pers{
    animation: fadeIn 1s ease-out forwards; 
    background-color: #f8f9fa; /* Fondo claro */
   width: 90%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(200px); }
    to { opacity: 1; transform: translateY(0); }
}

.container-fluid {
flex: 1;
    
}
.content{
    flex: 1;
}

.form-label {
    color: #0056b3; /* Azul principal */
    font-weight: bold;
}

.form-control, .form-select {
    border: 1px solid #ccc;
    transition: border-color 0.3s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: #0056b3;
    box-shadow: none;
}

.btn-primary {
    background-color: #004085;
    border: none;
}

.btn-primary:hover {
    background-color: #002752;
}


h1{
    color: #0056b3;
}
a{
    text-decoration: none;
}




.nav-item.dropdown .dropdown-menu {
    width: auto; /* Ajusta automáticamente el ancho al contenido más ancho */
    min-width: 100%; /* Asegura que el menú tenga, como mínimo, el ancho del botón dropdown */
}

.dropdown-item {
    white-space: nowrap; /* Evita que el contenido se ajuste a líneas múltiples */
}

/*Cookies Banner*/
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f4f4f4;
    color: #333;
    padding: 10px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-consent-banner p {
    margin: 10px 0;
}

.cookie-consent-banner button {
    color: #fff;
    background-color: #007BFF;
    border: none;
    padding: 5px 10px;
    margin-right: 10px;
    cursor: pointer;
}

.cookie-consent-banner a {
    color: #007BFF;
    text-decoration: none;
}

.termes-politica{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
 }
 .termes-politica a{
     font-style: italic;
     font-size: 11px;
     color: white;
     text-decoration: underline;
     letter-spacing: 1px;
 }