:root {
  --primary-one: #ff6690;
  --primary-two: #ad917c; 
}

.primary-color-one{color:var(--primary-one) !important;}
.primary-color-two{color:var(--primary-two) !important;}
.forewhite{color:white !important;}
.back-one{background-color:var(--primary-one) !important;}
.back-two{background-color:var(--primary-two) !important;}
.back-tree{background-color:#f5f5f5 !important;}

.input-box{
    width:48%;
    height: 54px;
    padding: 0 15px;
    margin:10px 0;
}

.textbox{
    min-width: 100%;
    min-height: 200px;
    max-height: 200px;
    height: 186px;
    max-width: 100%;
    padding: 15px;
    border-radius: 3px;
}

@media (max-width: 814px) {
    .menu-desktop {
        display: none;
    } 
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 520px) {
    .input-box{
        width:100%;
    }
}

/* Contenedor */
.checkcontainer {
  display: inline-block;
  position: relative;
  padding-left: 35px; /* espacio para el cuadrado */
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

/* Ocultar checkbox nativo */
.checkcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Estilo del cuadrado */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;   /* tamaño */
  width: 25px;    /* tamaño */
  background-color: #ff669014;
  border: 2px solid var(--primary-one);
  border-radius: 4px; /* si lo quieres redondeado */
}

/* Hover efecto */
.checkcontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* Estado checked */
.checkcontainer input:checked ~ .checkmark {
  background-color: var(--primary-one); /* azul cuando está marcado */
  border-color: var(--primary-one);
}

/* Dibujar el ✔ */
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkcontainer input:checked ~ .checkmark::after {
  display: block;
}

.checkcontainer .checkmark::after {
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
