#mainContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  font-family: "Kumbh Sans", Arial, sans-serif;
  text-align: center;
  padding: 50px;
  background-color: #fafafa;
}

.content {
  min-height: 300px;
  /* position: relative; */
}

#navbar {
  display: flex;
  height: 100px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 5%;
  align-items: center;
  justify-content: flex-end;
}

#login-link {
  color: #192f52;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
}

#login-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.content p {
  font-size: 20px;
  max-width: 342px;
  padding-top: 50px;
  color: #333;
  margin-bottom: 50px;
  line-height: 1.5;
  opacity: 0;
  height: 0;
}

.alpar-button {
  color: #192f52;
  background-color: #fff;
  width: 180px !important;
  min-height: 45px;
  text-align: center;
  text-decoration: none;
  padding: 10px 40px;
  border: 1px solid #192f52;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.alpar-button:hover {
  background-color: #192f52;
  color: #fff;
}

@media (max-width: 768px) {
  .alpar-button {
    position: absolute;
    width: 80% !important;
    max-width: 342px;
    left: 10%;
    bottom: 50px;
    padding: 20px;
  }

  #navbar {
    padding-right: 10%;
  }
}
