.elementor-1406 .elementor-element.elementor-element-f05d1a8{--display:flex;--min-height:100vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;}.elementor-1406 .elementor-element.elementor-element-b3bc2f8{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-f05d1a8 *//* CONTENEDOR GENERAL */
.elementor-1406 .elementor-element.elementor-element-f05d1a8 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* WRAPPER */
.elementor-1406 .elementor-element.elementor-element-f05d1a8 #Container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 500px;
  width: 100%;
}

/* FORMULARIO */
.form {
  position: relative;
  margin-top: 100px;
  padding: 40px;
  width: 500px;
  max-width: 100%;

  z-index: 3;
  display: flex;
  flex-direction: column;
  border-radius: 12px;

  border: 1px solid rgba(0, 174, 239, 0.4);

  background: rgba(10, 25, 40, 0.30);
  backdrop-filter: blur(10px);

  box-shadow:
    0 0 40px rgba(0, 174, 239, 0.15),
    inset 0 0 20px rgba(0, 174, 239, 0.1);

  gap: 18px;

  animation: float 4s ease-in-out infinite;
}

/* TÍTULO */
#login-lable {
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 10px;

  text-shadow: 0 0 10px rgba(0, 174, 239, 0.6);
}

/* 🔥 INPUTS Y TEXTAREA UNIFICADOS (CLAVE) */
.form-content,
.form input,
.form textarea {
  height: 50px;
  padding: 0 14px;
  color: #ffffff !important;
  font-size: 14px;

  border-radius: 8px;
  border: 1px solid rgba(0, 174, 239, 0.8);

  background: rgba(255, 255, 255, 0.07) !important;

  box-shadow: 0 0 6px rgba(0, 174, 239, 0.25);

  transition: all 0.25s ease;
}

/* TEXTAREA AJUSTE */
.form textarea {
  height: 130px;
  padding-top: 12px;
  resize: none;
}

/* TEXTO ESCRITO */
.form input:not(:placeholder-shown),
.form textarea:not(:placeholder-shown) {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(0, 174, 239, 1);
  font-weight: 500;
}

/* FOCUS */
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: #00aeef;

  background: rgba(255, 255, 255, 0.12);

  box-shadow:
    0 0 12px rgba(0, 174, 239, 0.7),
    inset 0 0 5px rgba(0, 174, 239, 0.3);
}

/* 🔥 PLACEHOLDER LEGIBLE */
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* BOTÓN */
.form button {
  cursor: pointer;
  height: 54px;

  color: white;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;

  border-radius: 8px;
  border: 1px solid rgba(0, 174, 239, 0.6);

  background: linear-gradient(135deg, #0a2540, #003b5c);

  transition: all 0.3s ease;
}

/* HOVER BOTÓN */
.form button:hover {
  transform: translateY(-3px);

  background: linear-gradient(135deg, #003b5c, #00aeef);

  box-shadow:
    0 10px 25px rgba(0, 174, 239, 0.3),
    0 0 10px rgba(0, 174, 239, 0.5);
}

/* ANIMACIÓN */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0px); }
}/* End custom CSS */