/* ==========================================================================
   User Interface
   ========================================================================== */

/* Button General */

.btn {
  display: inline-block;
  opacity: 1;
  padding: 2px 30px;
  text-align: center;
  font-size: 16px;
  line-height: 46px;
  font-weight: bold;
  font-family: var(--font-title);
  box-sizing: border-box;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.4s;
  text-transform: uppercase;
}

/* Button Default */

.btn-dark {
  background: var(--color-primary);
  color: var(--color-black);
}

.btn-dark:hover {
  color: var(--color-secondary);
  background: #ffffff;
}

/* Button Light */

.btn-light {
  background: #00000000;
  color: var(--color-white);
}

.btn-light:hover {
  color: var(--color-secondary);
  background: #ffffff;
}

/* Form Inputs */

input,
textarea {
  border: 2px solid var(--color-red);
  padding: 10px 20px;
  background: none;
  color: #ffffff;
  font-size: 18px;
  font-family: var(--font-title);
  outline: none;
  box-sizing: border-box;
}

input {
  height: 60px;
  width: 48%;
}

textarea {
  height: 150px;
  width: 100%;
}
