/* body {
    margin: 0;
    overflow: hidden;
    background-image: linear-gradient(to bottom, #40afafdc, #c77e2ae3);
} */

body{
    margin: 0;
    padding: 0;
    height: 100%;
    background-image: linear-gradient(to bottom, #afafaf, #000000);
    background-attachment: fixed;
}

.owl-carousel .item {
    position: relative;
    height: 100vh;
    min-height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.owl-carousel .item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-color: rgba(39, 185, 51, 0.74); */
    background-image: linear-gradient(to bottom, #40afafdc, #c77e2ae3);
}
.owl-carousel .owl-item {
    opacity: 5;
    transition: opacity 2s ease;
}
.owl-carousel{
    top: 0px;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}
.form-login {
    position: absolute;
    top: 330px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 368px;
    max-width: 500px; /* Cambiar a un valor más alto para hacer el formulario más ancho */
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.form-login label {
    font-weight: bold;
}

.form-login input {
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background: #383d4112;
}

.form-login button {
    margin-top: 1rem;
}

.transparent-card {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    box-shadow: none;
    z-index: 2; /* Agrega esta línea */
}

.card-title {
    color: #883434;
    font-family: system-ui;
}

.typed {
    color: #d31212;
}
.grupcenter{
    position: relative;
    top: 0px;
}
.bodymove{
    cursor: move;
}
.typed-cursor {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    top: 0; /* añadir esta línea */
}
span.typed-cursor{
    position: relative;
    top: -6px;
    left: -7px;
}
.btn-center {
display: block;
margin: 0 auto;
}
@media  (min-width: 576px) {
    .grupcenter{
        top: 123px;
    }
}
.col-lg-6{
        top: 403px;
}
#confirm_token{
    display: none;
}
#form_coderecv{
    display: none;
}
#regresarResetearMail{
    display: none;
}

.form-login a[disabled] {
    pointer-events: none;
}
a#linkRemviar {
    color: rgb(0, 123, 255);
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
}
/* .owl-carousel.owl-theme.owl-loaded.owl-drag{
    top: -208px;
} */





/* Animación de entrada */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de texto deslizante */
.slide-up {
    animation: slideUp 0.7s ease-out 0.3s both;
}

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

/* Efecto de pulso en ícono de info */
.pulse-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Efecto hover en íconos de navegadores */
.browser-icon {
    transition: all 0.3s ease;
    position: relative;
}

.browser-icon:hover {
    transform: translateY(-5px);
}

.browser-logo {
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}

.hover-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
}

.browser-icon:hover .hover-circle {
    width: 70px;
    height: 70px;
}

/* Efecto de brillo en esquinas */
.browser-card {
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: borderGlow 4s infinite alternate;
}

@keyframes borderGlow {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 15px rgba(110, 69, 226, 0.5);
    }
}

.corner-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(110, 69, 226, 0.4) 0%, transparent 70%);
    opacity: 0;
    top: -50px;
    right: -50px;
    animation: cornerMove 8s infinite alternate;
}

@keyframes cornerMove {
    0% {
        opacity: 0;
        top: -50px;
        right: -50px;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 0;
        top: -50px;
        right: 100%;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        top: 100%;
        right: -50px;
    }
}



@media  (max-width: 650px) {
    .text-center{
        margin-bottom: 15px !important;
    }
    .seeker-title{
        margin-bottom: 3px !important;
    }
    .form-login{
        /*top: 246px !important;*/
        top: 271px !important;
    }

    .form-group {
        margin-bottom: 3px !important;
    }

    .col-lg-6 {
        top: 280px !important;
    }
    
    .card-body{
        padding: 0.25rem !important;
    }

    .card.border-0.shadow-sm.rounded-lg.browser-card{
        background: #ffffff26 !important;
    }	
    
    i.fas.fa-info-circle.text-primary.mr-2.pulse-icon{
        display: none;
    }	
    
    
}