html,
body {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
}

.login-image {
  /* Set background image */
  background-image: url("../images/login-image.jpeg");
  /* Ensure the image covers the entire element */
  background-size: cover;
  /* Center the image horizontally and vertically */
  background-position: center;
  /* Ensure the element takes up the entire space of its container */
  width: 100%;
  height: 100%;

  min-height: 70px;
}

.apply-now-sm,
.apply-now-lg {
  width: 100%;
  background-color: #003b81;
}

.apply-now-lg {
  display: none;
  transform: translateY(60vh);
}

.footer {
  background-color: #01244e;
}

.button {
  padding: 8px;
  border-radius: 4px;
  width: 183px;
  height: 40px;
  background-color: #b31302;
  color: white;
  transition: background-color 0.3s, transform 0.3s;

  p {
    margin: 0;
    padding: 0;
  }

  &:hover {
    background-color: #c61703;
    transform: scale(1.02);
  }
}

.viewport-height {
  min-height: 100%;

  @media screen and (max-width: 768px) {
    min-height: 90%;
  }
}

.footer a {
  text-decoration: none;
  /* Remove underline */
  color: #8e8e8e !important;
}

.media-icons i {
  font-size: 1.5rem;
  /* Adjust icon size as needed */
}

.media-icons img {
  width: 1.8rem;
}

.left-side {
  margin: 0;
  padding: 0;
}

.slogan {
  color: #003b81;

  @media screen and (max-width: 768px) {
    font-size: 0.9rem;
  }
}

#api {
  width: 100%;
}

#api .intro {
  display: none;
}

.entry-item {
  margin-bottom: 2rem;
}

.entry-item label {
  display: block;
  color: #495057;
}

.entry-item > label {
  margin-bottom: 0.5rem;
}

.entry-item input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.entry-item input[type="email"]:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.entry-item input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.entry-item input[type="password"]:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.entry-item .error p {
  color: #dc3545;
  margin-top: 0.25rem;
}

#api button {
  border: none;
  display: flex;
  width: 50%;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #008059;
  color: white;
  margin-top: 2rem;

  @media screen and (max-width: 768px) {
    width: 100%;
    padding: 14px;
  }
}

#api .divider {
  display: none;
}

#api h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#api .password-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

#api .password-label a {
  font-size: 0.8rem;
}

a {
  color: #007bff;
  text-decoration: none;
}

#api .create {
  display: none;
}

input#rememberMe, label{
  cursor: pointer;
}

.mobile-container {
  @media screen and (max-width: 768px) {
    width: 80%;
  }
}

@media (min-width: 768px) {
  .apply-now-lg {
    display: block !important;
  }

  .apply-now-sm {
    display: none !important;
  }

  .container {
    width: 50%;
  }
}

.apply-now {
  cursor: pointer;
}

.apply-now p {
  pointer-events: none;
}

.logo {
  /* Make smaller on mobile */
  @media screen and (max-width: 768px) {
    width: 40%;
  }
}

.apply-now-btn {
  color: white;
  text-decoration: none;
}

.error.pageLevel {
  color: red;
}
