body {
  margin: 0; 
  padding: 0;
  font-family: 'Poppins', sans-serif;
}


#video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    background: rgba(218, 11, 78, 0.8);
    z-index: 0;
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  overflow: auto;
  max-width: 1000px;
  display: flex;
  padding: 0;
  border: 1px solid #032656 !important;
  display: flex;
  flex-direction: row;
}

.form-singup {
  background: #f7f9fc;
  padding: 40px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: start;
}
.form-singup img {
  max-width: 100%;
  height: auto;
}
.form-content {
  flex: 1;
  padding: 40px;
}
.form-header h3 {
  margin-bottom: 10px;
  font-weight: bold;
}
.form-header p {
  color: #666;
  margin-bottom: 20px;
}
.form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.btn-primary {
  background-color: #032656;
  border-color: #032656;
}

.btn-primary:hover {
  background-color: #da0b4e;
  border-color: #da0b4e;
}

.error-message{
  font-size: 0.8rem;
  font-weight: bold;
}

input,select,textarea{
  border: 1px solid #da0b4e !important;
}

.poweredBy{
  color: #da0b4e !important;
  text-decoration: none;
  font-size: 0.8rem;
}

.powered-by-container{
  display: none;
}

.aqs{
  font-size: 3rem;
  font-weight: bolder;
}
.text-small{
  font-size: 0.8rem;
}

@media (min-width: 320px) and (max-width: 991px) {
  
  .container {
    flex-direction: column !important;
  }

  #content {
    height: 100% !important;
  }

  .powered-by-container{
    display: block;
    text-align: center;
  }

}