@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
.typ {
  font-family: 'Poppins', sans-serif;
}


.bg-red-img {
  /*background: url("../img/bg-numeralia.jpg") no-repeat center center scroll;*/
  background-image: url("../img/bg-contador-1.jpg") no-repeat;
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}


.bg-01-img {
  background-image: url("../img/bg-01.png") !important;
  background-repeat: no-repeat;
  background-size: contain;
  
}

.bg-02-img {
  background-image: url("../img/bg-02.png") !important;
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

.bg-03-img {
  background: linear-gradient(rgba(23, 50, 73, 0.8) 100%, rgba(23, 50, 73, 0.5) 100%), url("../img/bg-socioamic.jpg") no-repeat;
  width: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}


.btn-circle.btn-xl {
  width: 50px;
  height: 50px;
  padding: 10px 10px;
  border-radius: 35px;
  font-size: 24px;
  line-height: 1.33;
}

.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0px;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;
}


.container_1{
  background-color : #186398;;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 0px 30px 0px 30px; 
  padding: 80px 15px 15px 0px; text-align: right;
}

.container_2{
  background-color : #000000;
  font-weight: bold;
  color: #FFFFFF;
  border-radius: 0px 30px 0px 30px; 
  padding: 80px 15px 15px 0px; text-align: right;
}

.container_3{
  text-align: right;
  color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 80px;;
  background-image: url(../img/medio_circulo.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.bg_uno {
  background-color : #186398;;
  color: #ffffff;
  font-weight: bold;
}
.bg_uno:hover {
  background-color : #186398;
  color: #ffffff;
  font-weight: bold;
}

.input_search {
  background-color: #186398;
  color: #FFFFFF!important; 
  border: 1px solid #186398;
}
.input_search:focus {
  background-color: #186398;
  color: #FFFFFF!important; 
  border: 1px solid #186398;
}

.idImg1:hover{
  display:block;
}

.boton_ver:hover{
  display: block;
}

.boton_ver {
  display: none;
}

.temporizadorNum {
  font-size : 80px;
  font-weight: 800;
}
.temporizadorTitle{
  font-size : 24px;
  font-weight: 300;
}


.btn_slider{
  font-size: 18px;
}

.btn {
  border-radius: 15px!important;
}

.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #186398;
}



/*NUEVOS ESTILOS PARA SLIDER*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .slider-container {
            position: relative;
            width: 100%;
            max-width: 1600px;
            height: auto;
            margin: 20px auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            aspect-ratio: 1600 / 665;
            background: #f8f8f8;
        }

        .slider-wrapper {
            display: flex;
            width: 700%;
            height: 100%;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        /* Motion Blur Effect */
        .slider-wrapper.transitioning {
            filter: blur(4px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
        }

        .slider-wrapper:not(.transitioning) {
            filter: blur(0px);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s ease;
        }

        .slide {
            position: relative;
            width: calc(100% / 7);
            height: 100%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.4s ease;
            display: block;
            background: #f0f0f0;
        }

        .slide:hover img {
            transform: scale(1.05);
        }

        /* Navegación con flechas */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-button.prev {
            left: 20px;
        }

        .nav-button.next {
            right: 20px;
        }

        /* Indicadores (dots) */
        .indicators {
            position: absolute;
            bottom: 20px;
			opacity: 0; /* opacidad de los bullets que funcionan como indicadores*/
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .indicator.active {
            background: #fff;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        /* Overlay con gradiente sutil */
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 1600px) {
            .slider-container {
                max-width: 95%;
                height: auto;
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {
            .slider-container {
                height: auto;
                margin: 10px;
                border-radius: 8px;
                min-height: 250px;
                aspect-ratio: 16 / 9; /* Proporción más móvil-friendly */
            }

            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 16px;
				opacity: 0;
            }

            .nav-button.prev {
                left: 10px;
				opacity: 0;
            }

            .nav-button.next {
                right: 10px;
				opacity: 0;
            }

            .indicators {
                bottom: 15px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .slider-container {
                aspect-ratio: 4 / 3; /* Aún más cuadrado en móviles pequeños */
                min-height: 200px;
            }
        }

        /* Animación de entrada */
        .slider-container {
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .bg-red2-img {
            background: url("../img/BG-contador.jpg") no-repeat;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        .bg-red-img {
            background: url("../img/bg-contador-1.jpg") no-repeat;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }
        
        .bg-red-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            opacity: 1;
        }
        
        .temporizadorNum {
            font-size: 3rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: pulse 2s infinite;
        }
        
        .temporizadorTitle {
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
/* Estilos adicionales para móviles que complementan tu CSS existente */
.timer-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.timer-box:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .temporizadorNum {
    font-size: 35px !important;
  }
  .temporizadorTitle {
    font-size: 14px !important;
  }
  .timer-box {
    margin-bottom: 8px;
    padding: 10px 8px !important;
  }
  .container {
    padding: 20px 15px !important;
  }
  h2.fst-italic {
    font-size: 1.3rem !important;
  }
  h3.fst-italic {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 576px) {
  .temporizadorNum {
    font-size: 28px !important;
  }
  .temporizadorTitle {
    font-size: 12px !important;
  }
  .timer-box {
    padding: 8px 6px !important;
  }
  h2.fst-italic {
    font-size: 1.1rem !important;
  }
  h3.fst-italic {
    font-size: 1rem !important;
  }
}

        .dual-slider-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            height: auto;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 8px;
            background: #f8f8f8;
        }

        .dual-slider-wrapper {
            display: flex;
            width: 200%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        /* Motion Blur Effect para transiciones suaves */
        .dual-slider-wrapper.transitioning {
            filter: blur(1.5px);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
        }

        .dual-slider-wrapper:not(.transitioning) {
            filter: blur(0px);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
        }

        .dual-slide {
            position: relative;
            width: 50%;
            height: 100%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .dual-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            transition: transform 0.6s ease;
            display: block;
            background: #f8f8f8;
        }

        .dual-slide:hover img {
            transform: scale(1.02);
        }

        /* Navegación minimalista para 2 slides */
        .dual-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            transition: all 0.3s ease;
            z-index: 10;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .dual-nav-button:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .dual-nav-button.prev {
            left: 15px;
        }

        .dual-nav-button.next {
            right: 15px;
        }

        /* Indicadores para 2 slides */
        .dual-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .dual-indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .dual-indicator.active {
            background: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        }

        /* Responsive para el slider dual */
        @media (max-width: 768px) {
            .dual-nav-button {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .dual-nav-button.prev {
                left: 10px;
            }

            .dual-nav-button.next {
                right: 10px;
            }

            .dual-indicators {
                bottom: 12px;
                gap: 10px;
            }

            .dual-indicator {
                width: 12px;
                height: 12px;
            }
        }

        /* Overlay sutil para mejor contraste */
        .dual-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(0,0,0,0.05) 0%, transparent 30%);
            pointer-events: none;
            z-index: 1;
        }

        /* Animación de entrada */
        .dual-slider-container {
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



/*ESTILOS PARA EL MODAL*/

.registro-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.registro-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.registro-modal.visible {
    opacity: 1;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(50px);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.registro-modal.visible .modal-container {
    transform: translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #0066A1 0%, #004d7a 100%);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-header .logo {
    width: 40px;
    height: 40px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    background: #f8f9fa;
}

/* Loader con animación BeAUTIMEC */
.loader {
    text-align: center;
    padding: 60px 20px;
}

.spinner-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.spinner {
    width: 100%;
    height: 100%;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #0066A1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: #666;
    font-size: 16px;
    margin-top: 10px;
}

/* Form Container */
#formContainer {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Personalización Ultimate Member */
#formContainer .um-form {
    padding: 0 !important;
    margin: 0 !important;
}

#formContainer .um-field {
    margin-bottom: 20px !important;
}

#formContainer .um-button {
    background: #0066A1 !important;
    border: none !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    border-radius: 25px !important;
    transition: all 0.3s !important;
}

#formContainer .um-button:hover {
    background: #004d7a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 102, 161, 0.3) !important;
}

/* Mensaje de éxito */
.success-message {
    text-align: center;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.success-text {
    color: #666;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
    .modal-container {
        width: 95%;
        margin: 10px;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 22px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .close-btn {
        top: 15px;
        right: 15px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}
/* FIN DE LOS ESTILOS PARA EL MODAL*/



        
        /* Header del modal con estilo River */
        .modal-header {
            background: linear-gradient(135deg, #006797 0%, #1e83b2 100%);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .modal-header h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        /* Botón cerrar */
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }
        
        /* Iframe container */
        .iframe-container {
            width: 100%;
            height: calc(100% - 70px);
            position: relative;
            background: #f5f5f5;
        }
        
        .iframe-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Loader mientras carga */
        .loader {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        
        .loader-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #ED1E24;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .modal-container {
                width: 70%;
            }
        }
        
        @media (max-width: 768px) {
            .modal-container {
                width: 95%;
                height: 95vh;
                border-radius: 10px;
            }
            
            .modal-header h2 {
                font-size: 18px;
            }
        }
        
        /* Botón de registro estilo River */
        .btn-registro {
            background: linear-gradient(135deg, #006897 0%, #278fbe 100%);
			width: 100%;
			height: 100%;
			color: white;
			line-height: 3px;
            padding: 15px 40px ;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .btn-registro:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 104, 151, 0.4);
        }
        
        .btn-registro:active {
            transform: translateY(0);
        }


/* Arreglar botones de Ultimate Member en el modal */
#registroModal .um-form .um-button {
    display: block !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    position: relative !important;
    color: #ffffff !important;
    text-align: center !important;
}

#registroModal .um-form .um-col-alt {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 20px !important;
}

#registroModal .um-form .um-button.um-alt {
    background: #6c757d !important;
    color: #ffffff !important;
}

#registroModal .um-form .um-button:hover {
    opacity: 0.9 !important;
    color: #ffffff !important;
}

/* Asegurar que el contenedor tenga suficiente altura */
#registroModal .um-form .um-submit {
    min-height: 120px !important;
    padding-bottom: 20px !important;
}




/*DOS CUADROS CENTRADOS, MARCAS Y CONFERENCIAS*/
.center-two-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.center-two-items > div {
  flex: 0 0 auto;
  max-width: 300px; /* Ajusta según necesites */
}


/* Overlay para cerrar el panel */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.login-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Botón lateral de registro */
.register-button {
    position: fixed;
    left: 0;
    top: 200px;
    background: #0066cc;
    color: white;
    padding: 15px 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border: none;
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.register-button:hover {
    background: #0052a3;
    padding-right: 12px;
}

/* Panel deslizante */
.login-panel {
    position: fixed;
    left: -350px;
    top: 200px;
    width: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 35px 30px;
    border-radius: 0 20px 20px 0;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: left 0.4s ease;
}

.login-panel.active {
    left: 50px;
}

.login-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.login-panel-content {
    position: relative;
    z-index: 1;
}

.login-title {
    color: #0066cc;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.login-form input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.btn-entrar {
    width: 100%;
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-entrar:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.close-panel {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-panel:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}