/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Resets */
.img-fluid {
  width: 100%;
}

.noPadding {
  padding: 0;
}

.row {
  padding: 0 !important;
  margin: 0 !important;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

section.noPadding {
  padding: 0em 0;
}

/* Fonts */
/* Fonts */
body,
input,
textarea,
select {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-display: swap;
}

h1 {
  font-size: 3.2em;
}

h2 {
  font-size: 2.6em;
}

h3 {
  font-size: 2em;
}

p,
li,
label {
  font-size: 1.2em;
}

.smallTxt {
  font-size: 0.7em;
  text-align: center;
}

/* links */
a {
  color: #c21734;
  text-decoration: underline;
  transition: color 0.3s;
}

a:hover,
a:active,
a:focus {
  color: #c21734 !important;
}

/* Contenedor Principal*/

.wrap-landing {
  background-color: #c21734;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
}

footer {
  background-color: #525659;
}

.color-white { 
  color: white;
}

.color-red {
  color: #c21734;
}

.color-gray {
  color: #525659;
}



/* --------------Form----------- */

#multi-step-form {
  overflow-x: hidden;

  

  .form-group {
    background-color: #f7f7f7;
    border-radius: 1rem;
  }

  .form-control{
    &::placeholder{
      color: #717171 !important;
    }
  }

 
  /* Buttons */
  .btn {
    max-width: 250px;
    margin: 0 0.5rem;
    border: 1px solid;
    padding: 0.8em 1.3em !important;
    transition: color 0.4s, border 0.3s;
    position: relative;
    transition: color 0.3s, background-color 0.3s;
    -webkit-border-radius: 0.5rem;
    -ms-border-radius: 0.5rem;
    -o-border-radius: 0.5rem;
    border-radius: 0.5rem;
    border-color: #525659;
    background-color: white;
    color: #525659;

    &:hover {
      background-color: #525659;
      color: white;
    }
  }
}

.logo {
  max-width: 200px;
  width: 100%;
}





/* Social Media Icons */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.social-icon i {
  font-size: 1.2rem;
}

/* Responsive adjustments for social icons */
@media (max-width: 576px) {
  .social-icons {
    gap: 0.75rem;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
  
  .social-icon i {
    font-size: 1rem;
  }
}

/* Terms and Conditions Link */
.terms-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.terms-link:hover {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

/* Terms and Privacy Checkbox */
.terms-checkbox-label {
  color: #525659;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.terms-link-inline {
  color: #c21734;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.terms-link-inline:hover {
  color: #a0142a;
  text-decoration: underline;
}

/* Custom checkbox styling for terms and conditions */

/* Styling for the terms checkbox */
#tyc .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

#termsCheckbox {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #c21734;
  margin-right: 10px;
}

#termsCheckbox:checked {
  background-color: #c21734;
  border-color: #c21734;
}

#termsCheckbox:focus {
  outline: 2px solid #c21734;
  outline-offset: 2px;
}


