:root{
    --orange-100: #ffe5d0;
    --orange-200: #ffcc9b;
    --orange-300: #ffae5e;
    --orange-400: #ff8f1f;
    --orange-500: #ff6f00;
    --orange-600: #e65e00;
    --orange-700: #cc4c00;
    --orange-800: #b33b00;
    --orange-900: #992900;
    --orange-1000: #7f1800;

    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --gray-1000: #121619;
}

body{
    color: var(--gray-700);
}
html, body, iframe#sandboxFrame, .full_size {
    margin: 0;
    padding: 0; 
    height: 100%;
    width: 100%;
}
a{
    color: var(--orange-400);
}
a:hover{
    color: var(--orange-600);
}
h2{
    color: var(--gray-900);
}
.h2-orange{
    color: var(--orange-600);
}
input[type="text"], input[type="email"], input[type="password"], input[type="date"] {
    border: 1px solid var(--gray-400);
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
}
select{
    border: 1px solid var(--gray-400);
    border-radius: 5px;
    padding: 10px !important;
    width: 100%;
    margin-bottom: 10px;
}
select:focus{
    border-color: var(--orange-400) !important;
    box-shadow: 0 0 5px var(--orange-400) !important;;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="date"]:focus{
    border: 1px solid var(--orange-400);
    box-shadow: 0 0 5px var(--orange-400);
}
.datepicker {
    background-color: var(--orange-400) !important;
}
.mc-bg-orange{
    background-color: var(--orange-100);
}
.loader{
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 2;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange-500);
    opacity: 1;
    transition: opacity 0.5s ease; 
}
.mc-loader-sending{
  background-color: var(--orange-700)
}

.slide{
    height: 100vh;  
    width: 100%;
}
.mc-intro{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.mc-scroll{
        margin-top: -2em;
    height: 45px;
    width: 45px;
    display: flex;
    bottom: 40px;
    position: absolute;
    border-radius: 100%;
    justify-content: center;
    background-color: #e84621;
    align-items: center;
    animation: bounce 1.5s infinite; /* Aplica la animación */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* Estado inicial y final, sin desplazamiento */
    }
    50% {
        transform: translateY(-10px); /* Desplazamiento hacia arriba */
    }
}
.mc-scroll-text{
  padding-top: 3px;
  font-size: 14px;
  color: #ffffff;
}
.mc-logo{
  max-width: 300px
}
/* .spinner-grow{
  background-color: #E74622
} */
.mc-logo-container{
    width: 300px;
    margin: 0 auto;
}

.btn-orange{
    background-color: var(--orange-600);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}   
.btn-orange:hover{
    background-color: var(--orange-400);
}
.check-input-orange{
    border: 1px solid var(--orange-600);
    border-radius: 5px;
    background-color: var(--orange-100);
}
.check-input-orange:checked{
    border: 1px solid var(--orange-600);
    background-color: var(--orange-600);
    color: white;
}

.form-check-input{
  border: var(--bs-border-width) solid #a8a8a8;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
input:-webkit-autofill:active, 
.webkit-select  {
    -webkit-box-shadow: 0 0 0 30px var(--orange-100) inset !important;
    -webkit-text-fill-color: var(--gray-800) !important;
}

.form-check-input:checked {
    background-color: var(--orange-600);
    border-color: var(--orange-600);
}

.form-check-input:focus {
    border-color: var(--orange-600);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(255, 111, 0, 0.25);
}

#mc-validando{
  width: 100%;
  height: 100vh;
  background-color: var(--gray-100);
  position: fixed;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  
}

#mc-feedback{
  width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mc-success{
    background-color: var(--gray-100);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#feedbackPrivacy{
    position: fixed;
    display:  none;
    top: 0;
    background-color: white;
    width: 100%;
    height: 100vh;
    font-size: 1em;
    padding: 1em;
    overflow: scroll
}


#mc-slide-1{
  width: 100vw;
  height: 100vh;
  
}
#mc-slide-2{
	/* background-color: var(--orange-500); */
	width: 100vw;
	height: 100vh;
	padding: 5em;
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	justify-content: center;
	align-items: center;
	flex-flow: column;
}

.mc-h2-intro{
  font-size: 2.5em;
  width: 70%;
  color: var(--gray-900);
  margin-bottom: 1em;
}

/* @media (min-width: 768px) {
    body{
      font-size: 26px
    }
    label{
      font-size: 26px
    }
    .h6{
      font-size: 28px
    }
    .container{
        max-width: 850px;
    }
} */


footer{
    padding: 1em;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
@media (max-width: 576px) {
    #mc-slide-1{
      padding: 2em;
    }
    #mc-slide-2{
      padding: 2em;
    }
    .mc-h2-intro{
      font-size: 21px;
      width: 100%;
      color: var(--gray-900);
      
    }
    h2{
      /* font-size: 31px */
    }
    p{
      font-size: 18px
    }
    .mc-logo {
      max-width: 180px !important;
    }
    .mc-btns{
      width: 100%
    }
} 
