/* CSS para detalle-hosting para los videos tutoriales */
.video-thumbnail {
    cursor: pointer;
    margin: 5px;
    transition: transform 0.2s;
}
.video-thumbnail:hover {
    transform: scale(1.05);
}

/* CSS para detalle-dominio */
.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 8px;
}
.action-btn i {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

/*Switch estilo iOS */
.switch-ios {
  position: relative;
  display: inline-block;
  width: 40px; /* antes 50px */
  height: 20px; /* antes 24px */
}
.switch-ios input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-ios {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}
.slider-ios:before {
  position: absolute;
  content: "";
  height: 14px; /* antes 18px */
  width: 14px;  /* antes 18px */
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider-ios {
  background-color: #28a745;
}
input:checked + .slider-ios:before {
  transform: translateX(20px); /* antes 26px */
}

/* LOGIN */

.login-left {
height: 100vh; /* Ocupa toda la altura */
overflow-y: auto; /* Scroll si se necesita */
background: #183981;
padding: 1rem;
}

.login-box {
  max-width: 400px;
  margin: auto;
}

/* ===== Global/posición ===== */
html, body {
  height: 100%;
  margin: 0;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.login-left, .login-right {
  height: 100vh;
  overflow-y: auto;
  box-sizing: border-box;
}

.right-inner {
  padding: 2rem;           /* espacio interior (ajústalo) */
  box-sizing: border-box;  /* importante para que paddings no rompan el ancho */
}

.login-right .card {
  border-radius: .6rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  background: #ffffff;    /* fondo blanco por defecto */
}

.login-right .card.box-info  { border-left: 4px solid #17a2b8; }
.login-right .card.box-success { border-left: 4px solid #28a745; }

.login-right .card.full-info {
  background: #17a2b8;
  color: #fff;
  border-color: #17a2b8;
}

.login-right .card .card-header h5 { margin: 0; }      


.social-bubble {
  position: fixed;         /* Siempre visible en la pantalla */
  bottom: 20px;            /* Distancia desde el borde inferior */
  right: 20px;             /* Distancia desde el borde derecho */
  background: #fff;        /* Fondo de la burbuja */
  border-radius: 15px;     /* Esquinas redondeadas */
  padding: 10px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Sombra para efecto flotante */
  z-index: 9999;           /* Encima de todo */
  text-align: center;
}

.social-bubble p {
  font-size: 14px;
  margin: 0 0 8px;
  font-weight: bold;
}      

.social-bubble a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin: 0 5px;
  font-size: 18px;
  color: #555;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: #f1f1f1; /* fondo base */
}

/* Colores en hover */
.social-bubble a.facebook:hover {
  background: #3b5998;
  color: #fff;
}

.social-bubble a.instagram:hover {
  background: #e4405f;
  color: #fff;
}

.social-bubble a.x-twitter:hover {
  background: #000;
  color: #fff;
}

 .social-bubble a.youtube:hover {
  background: #ff0000;
  color: #fff;
}

/* LOGIN */