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;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 10px;
  margin: 0;
}
.container {
  margin-top: 30px;
  position: relative;
  flex: 1;
}
.content {
  position: relative;
  z-index: 2;
}
h1 {
  text-align: center;
}
h1 {
  font-size: 2rem;
}
.btn {
  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%;
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  margin-top: 10%;
}
.dir {
  display: block;
  background: linear-gradient(to right, #05493e 0%, #99cfd1 100%);
  color: #fff;
  font-size: 20px;
  transform: scale(1);
  transition: scale 0.3s;
  width: 100%;
  margin-top: 10px;
  font-weight: 700;
  padding: 10px;
  max-width: 90%;
  margin: 0 auto;
}
.dir:hover {
  scale: 0.95;
}
.form-container a {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.form-container a:hover {
  background-color: #0056b3;
  text-decoration: none;
}

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

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

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

.sidebar a {
  color: #000;
  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;
    max-width: 350px;
  }

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

  .btn {
    width: unset;
    max-width: unset;
  }
}

.title {
  color: #fff;
}

a {
  text-decoration: none;
}
