body {
    background: rgb(2, 0, 36);
    background: linear-gradient(0deg, rgba(2, 0, 36, 1) 0%, rgba(255, 0, 104, 1) 100%);
    font-family: 'Oswald', sans-serif;

    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}





/* CSS */
.button-71 {
  background-color: #ff0055;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui,-apple-system,system-ui,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  padding: 16px 21px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-71:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.button-71:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .button-71 {
    padding: 16px 48px;
  }
}


.text-center{
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 500px;
    width: 100%;
    margin: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

p{
        color: white;
    margin: 0;
}

.title {
    text-align: center;
    margin-bottom: 20px;
}

.title img {
    width: 80px;
    height: auto;
}

.title h2 {
    margin: 10px 0;
    font-size: 25px;
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin: 3px 0px;
    font-weight: bold;
    color: white;
}

.form-control, .form-select {
    width: 100%;
    background-color: #141414;
    padding: 7px;
    color: white;
    border-radius: 4px;
    border: 3px groove #7f7f7f;
    box-sizing: border-box;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff006a;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 106, 0.25);
}

.btn-custom {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ff006a;
    border: none;
    border-radius: 4px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-custom:hover {
    background-color: #e6005c;
}

.centered-container {
    text-align: center;
    margin: 20px 0;
}

.centered-container input[type="checkbox"] {
    margin-right: 10px;
}

.centered-container h6 {
    display: inline;
    vertical-align: middle;
}

.g-recaptcha {
    margin: 10px 0%;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}

@media (max-width: 576px) {
    .form-container {
        padding: 15px;
    }

    .title h2 {
        font-size: 20px;
    }

    .title img {
        width: 60px;
    }
}