.register_form{

    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}



.register_form .title_form {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 2rem;
    max-width: 25rem;
}

.register_form form {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.9rem;
}

.register_form form input {
    font-family: Poppins;
    padding: 0.8rem 0;
    width: 100%;
    border-radius: 5px;
    border: none;
    text-indent: 15px;
}

.register_form form textarea {
    font-family: Poppins;
    padding: 0.8rem 0;
    width: 100%;
    height: 100px;
    resize: vertical;
    border-radius: 5px;
    border: none;
    min-height: 100px;
    max-height: 150px;
    text-indent: 15px;
}

.register_form form input::placeholder {
    text-indent: 1rem;
}

.register_form form textarea::placeholder {
    text-indent: 1rem;
}

.send_button {
    font-family: Poppins;
    cursor: pointer;
    padding: 0.9rem 0;
    color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
}


.bg-section-5 {
    /* background-image: url('assets/img//form_banner.png'); */
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

#preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
}
#preloader .preloader-svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  margin: auto;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  background-image: url(../img/loading.svg);
  width: 64px;
  height: 64px;
}