/* styles.css */

body {
    background-color: #f0f0f0;
}

.btn-danger{
    background-color: #b72f63;
}
.btn-danger:hover{
    background-color: #b72f63;
}

.celeste {
    color: #046cae;
    font-family: 'Montserrat', sans-serif;

}

.card-footer{
    margin-top: 2rem;
    background-color: transparent;
    border-color: transparent;
}
.card-footer p{
    text-align: center;
    color: black;
    opacity: 60%;
    margin-top: 1rem;
}
.card-footer p a{
    color: black;
}

/* Estilos para el loader */
#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    font-size: 24px;
    line-height: 100vh;
    z-index: 9999;
}

/* Agregar animación de rotación para hacerlo más interesante */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Estilo para el texto "Cargando..." */
#loader::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

.text-center{
    font-family: 'Montserrat', sans-serif;
}

.btn-primary{

    background-color: #046cae;
    border-color: #046cae;
}

.logo-online img{
    height: 3rem;
}

.body-login{
    margin-top: 5rem;
}

.card-login{
    margin-top: 5rem;
    padding: 2rem;
}

.container-principal {
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.progress-container {
    width: 100%;
    background-color: #f0f0f0;
    height: 20px;
    margin-top: 20px;
    border-radius: 5px;
}
.card:hover {
    transition: background-color 0.3s ease; /* Agrega una transición suave */
}

.card-header {
    transition: background-color 0.5s; /* Agregar transición de color de fondo */
  }

  
.formulario:not(.activo) {
  opacity: 0.5;
  pointer-events: none;
}


       /* Estilo para hacer que el contenido del modal sea desplazable */
.modal-body {
    max-height: 400px; /* Altura máxima del contenido */
    overflow-y: auto; /* Hacer que el contenido sea desplazable verticalmente si es necesario */
}

.bg-mat{
    background: linear-gradient(to right, #046cae, #0faec0);
}

.text-mat{
    color: #0faec0;
}

.btn-mat {
    color: #fff;
    background-color: #21A5DE;
    border-color: #46b8da;
}
.btn-mat:focus, .btn-mat.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85;
}
.btn-mat:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.btn-mat:active, .btn-mat.active, .open > .dropdown-toggle.btn-mat {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.btn-mat:active:hover, .btn-mat.active:hover, .open > .dropdown-toggle.btn-mat:hover, .btn-mat:active:focus, .btn-mat.active:focus, .open > .dropdown-toggle.btn-mat:focus, .btn-mat:active.focus, .btn-mat.active.focus, .open > .dropdown-toggle.btn-mat.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85;
}
.btn-mat:active, .btn-mat.active, .open > .dropdown-toggle.btn-mat {
    background-image: none;
}
.btn-mat.disabled:hover, .btn-mat[disabled]:hover, fieldset[disabled] .btn-mat:hover, .btn-mat.disabled:focus, .btn-mat[disabled]:focus, fieldset[disabled] .btn-mat:focus, .btn-mat.disabled.focus, .btn-mat[disabled].focus, fieldset[disabled] .btn-mat.focus {
    background-color: #21A5DE;
    border-color: #46b8da;
}
.btn-mat .badge {
    color: #21A5DE;
    background-color: #fff;
}/* Further Improved Styles for the Footer */
/* Further Improved Styles for the Footer */
/* Styles for the modified footer */


.footer {
    background: linear-gradient(to bottom, #445267, #445267);
    color: white;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;

}

.footer-section h3{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-top: 1rem;
}

.list-unstyled li a{
    color: white;
}
.list-unstyled li a:hover{
    color: #b2afaf;
}

.correo{
    color: white;
}
.correo:hover {
    color: #b2afaf;
}


.footer-email a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}



/* Adjust the logo size */
.footer-logo {
    max-width: 100%;
    max-height: 80px;
    margin-bottom: 20px;
    margin-top: 3rem;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .footer-links h3,
    .footer-contact h3 {
        font-size: 16px;
    }

    .card-login{
        margin-top: 0;
    }
}


.accept-buttonn-container {
    text-align: center;
    position: relative;
}

.accept-buttonn-container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.accept-buttonn-container:hover::after {
    opacity: 0;
}
