:root {
  --dark: #16191C;
  --dark-x: #1E2126;
  --light: #ffffff;
}

body {
  font-weight: 300;
  color: var(--light);
}

.text-light {
  color: var(--light);
}

.bg-dark {
  background-color: var(--dark);
}

.bg-dark-x {
  background-color: var(--dark-x);
}

.btn {
  min-height: 3.125rem;
  font-weight: 600;
}

.form-control {
  min-height: 3.125rem;
  line-height: initial;
}

.form-control:focus {
  background-color: var(--light);
  outline: none;
}

.img-1 {
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
}

.empresa {
  background: transparent;
  border: none;
}


/* Quitar border-radius de todos los botones e inputs */
button,
.btn,
input,
.form-control,
textarea,
select {
  border-radius: 0 !important;
}

textarea:focus,
input:focus,
input[type]:focus {
  border-color: #A5B4FC;
  box-shadow: none;
  outline: 0 none;
}