body,
html {
  min-height: 100vh;
}

.row.no-gutters {
  min-height: calc(100vh / 2);
}

@media (min-width: 992px) {
  body,
  html,
  .row.no-gutters {
    min-height: 100vh;
  }
}

.registration {
  background: #467a2f;
  position: relative;
  overflow: hidden;
}

.admin {
  background: #407cdd;
  position: relative;
  overflow: hidden;
}

.cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all ease-in-out .2s;
  width: 100%;
  height: 100%;
  position: absolute;
}

.registration:hover .cover,
.admin:hover .cover {
  transition: all ease-in-out .2s;
  transform: scale(1.1);
}

.registration__cover {
  background-image: url('../../../images/welcome/registration-cover.jpg');
}

.admin__cover {
  background-image: url('../../../images/welcome/admin-cover.jpg');
}

.landing-common {
  max-width: 90%;
  margin: auto;
  padding: 25px 0;
}

@media (min-width: 992px) {
  .landing-common {
    padding: 0;
  }
}

.landing-common h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
}

.landing-common h5 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}

.landing-common p {
  margin-bottom: 30px;
}

.text-white {
  color: #ffffff !important;
}

.btn-landing-ghost {
  color: #ffffff;
  border: #ffffff 1.5px solid;
  font-weight: 600;
  padding: 10px 30px;
  font-size: 18px;
  white-space: pre-wrap;
  transition: all ease-in-out 0.3s;
}

.btn-landing-ghost:hover {
  color: #6fbf4c;
  background: #ffffff;
  border-radius: 50px;
  transition: all ease-in-out 0.3s;
}

.btn-landing-ghost.btn-landing-ghost--admin:hover {
  color: #407cdd;
}

.logo {
  min-width: 250px;
  padding: 15px 20px;
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 2;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
}

@media (min-width: 992px) {
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

.logo img {
max-width: 300px;
height: auto;
}