@import url('https://fonts.googleapis.com/css?family=Poppins:200i,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Acme&family=Anton&family=Open+Sans:wght@800&family=Roboto+Mono:wght@700&family=Urbanist:ital,wght@0,800;1,600&display=swap');
:root {
  --color-white: #f3f3f3;
  --color-darkblue: #1b1b32;
  --color-darkblue-alpha: rgba(142, 142, 172, 0.4);
  --color-green: #37af65;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
  margin: 0;
}

/* mobile friendly alternative to using background-attachment: fixed */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
   background: var(--color-darkblue); 
  background-image:  linear-gradient(
      115deg,
      rgb(23, 23, 85),
      rgba(35, 35, 58, 0.6)
    ), 
    url(../img/contact.jpeg); 

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

h1 {
  line-height: 1.0;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Open Sans';
}
h2{
    font-family: 'Open Sans';
    font-size: 2.2rem;
    font-weight: 900;
}

p {
  font-size: 1.125rem;
}


p {
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: bolder;
  font-size: 3.5rem;
}

label {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

input,
button,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border: none;
}


.header {
  padding: 0 0.625rem;
  margin-bottom: 1.875rem;
}

.description {
  font-style: italic;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.clue {
  margin-left: 0.25rem;
  font-size: 0.9rem;
  color: #e4e4e4;
}


/* form */

form {
  background: var(--color-darkblue-alpha);
  padding: 2.5rem 0.625rem;
  border-radius: 2.25rem;
}

@media (min-width: 480px) {
  form {
    padding: 2.5rem;
  }
}

.form-group {
  margin: 0 auto 1.25rem auto;
  padding: 0.25rem;
}
.form-group label {
  margin-left: 1.25rem;
}
.form-control {
  display: block;
  width: 100%;
  height: 2.875rem;
  padding: 0.375rem 0.75rem;
  color: #5b7185;
  background-color: #ccc7c777;
  background-clip: padding-box;
  border: 1px solid #727577;
  border-radius: 2.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-radio,
.input-checkbox {
  display: inline-block;
  margin-right: 0.625rem;
  min-height: 1.25rem;
  min-width: 1.25rem;
}

.input-textarea {
  min-height: 120px;
  width: 100%;
  padding: 0.625rem;
  resize: vertical;
}

.submit-button {
  display: block;
  width: 45%;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 auto;
  padding: 0.75rem;
  background: rgb(202, 109, 66);
  color: inherit;
  border-radius: 50px;
  cursor: pointer;
}

.underline {
    /* bottom: 50px; Controla la distancia entre el texto y la barra */
    margin: 60px 0 20px 0;
    border-radius: 5px;
    left: 0;
    width: 80px; /* Ajusta el ancho de la barra horizontal según tus preferencias */
    height: 4px; /* Ajusta el grosor de la barra horizontal según tus preferencias */
    background-color: rgb(255, 255, 255); /* Cambia el color de la barra según tus preferencias */
  }