body {
  background-image: url('/img/bg-st-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #09608d;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}
.container {
  margin-top: 30px;
  position: relative;
  flex: 1;
}
.content {
  position: relative;
  z-index: 2;
}
h1 {
  text-align: center;
}
h1 {
  font-size: 2rem;
}
.form-container {
  background-color: rgba(228, 209, 209, 0.85);
  padding: 20px;
  border-radius: 10px;
  color: #db136c;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.form-container a {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 20px;
  border: none;
  background: linear-gradient(135deg, #3aafde, #541843, #bf84ba, #1c1f5e);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition:
    background 0.3s ease,
    scale 0.3s;
}
.form-container a:hover {
  text-decoration: none;
  scale: 0.95;
}

.row {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 10%;
  justify-content: space-around;
}

.row > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-around;
}

.sidebar {
  color: #fff;
  z-index: 99;
  white-space: nowrap;
  padding: 10px;
}

.sidebar a {
  color: #fff;
  font-size: 18px;
}

.sidebar a:hover {
  text-decoration: underline;
}

.padng {
  padding-top: 100px;
}

@media (min-width: 1600px) {
  .row {
    padding-top: 10%;
    justify-content: space-around;
  }
}

@media (max-width: 991px) {
  .padng {
    padding-top: 0;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 67.333333%;
  }
  .form-container {
    margin-top: 20px;
  }

  .row {
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding-top: 10%;
  }
}

.title {
  color: #fff;
}
