body::before {
  display: block;
  content: "";
  height: 56px;
}

section {
  background: linear-gradient(rgba(40, 200, 234, 0.9), rgba(40, 140, 234, 0.9)),
    url("../img/topimg.jpg") 0 50% no-repeat;
  background-size: cover;
}

section .container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.reg-box {
  background: white;
  opacity: 75%;
  width: 100vw;
  height: 100vh;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
  backface-visibility: hidden;
}

.reg-box:hover {
  opacity: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .reg-box {
    width: 400px;
    height: auto;
    border: solid #66ccff 0.5px;
    border-radius: 25px;
  }
}

.form-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.form-input input {
  padding: 10px;
  height: 32px;
  width: auto;
  border: #bbb solid 0.5px;
  border-radius: 25px;
  transition: 0.5s;
}

.form-input input:hover {
  transform: scale(1.05);
  border: #66ccff solid 1px;
}

#LoginBtn {
  margin-top: 36px;
  margin-bottom: 10px;
  width: 150px;
  height: 42px;
  font-size: 1.25rem;
  background-color: white;
  border: solid #286ac1 1px;
  border-radius: 25px;
  transition: 0.3s;
}

#LoginBtn:hover {
  transform: scale(1.1);
  border: solid white 1px;
  color: #f8f9fa;
  background-color: #286ac1;
}

.card-body p {
  font-size: 14px;
  margin-top: 10px;
}
