.title-bar {
  background: url(../images/movie-theater.webp) center center / cover no-repeat;
  padding-top: 70px;
  position: relative;
}

.title-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff55a5 0%, #ff5860 100%);
}
  
.title-bar .container .content h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}
  
  .contact .container .contact_form {
    width: 60%;
    margin: 0 auto;
  }

label {
    font-size: .7rem;
    text-transform: uppercase;
    font-weight: 600;
}

.field-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.field-container input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: 0.5s ease;
  transition-property: color, border-color, box-shadow;
}

.form-control,
.form-control:focus,
.form-control:active {
  background-color: #37373d !important;
}

.form-control:hover,
.form-control:focus {
  border-color: #ff55a5;
}

.form-control {
  border: 1px solid transparent;
  height: 50px;
  position: relative;
  color: #fff !important;
  font-size: 16px;
  width: 100%;
  border-radius: 8px;
  padding: 0 20px;
}

.submit-btn {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.auth-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff5860 0%, #ff55a5 100%);
  box-shadow: 0 0 16px 0 rgba(255, 88, 96, 0.3);
  position: relative;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow, opacity;
  border: none;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

.security {
  background-color: #28282d;
  padding: 20px;
  margin-top: 1rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, #ff55a5 0%, #ff5860 100%);
  box-shadow: 0 0 20px 0 rgba(255,88,96,0.5);
}
.security .title h4 {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.success-alert {
  background-color: #d1e7dd;
  width: 100%;
  border: 1px solid #a3cfbb;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 1rem;
}

.error-alert {
  background-color: #f8d7da;
  width: 100%;
  border: 1px solid #f1aeb5;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 1rem;
}

.success-alert p, .error-alert p {
  margin-bottom: 0;
}

.success-msg {
  color: #0a3622;
  font-size: 1rem;
}

.error-msg {
  color: #58151c;
  font-size: 1rem;
}


  @media (max-width: 48em) {
    .contact .container .contact_form {
      width: 100%;
    }
}