.body-container {
  min-height: calc(100vh - 40px); /* 80px is the combined height of the footer */
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.login-form {
  padding-top:20px;
  padding-bottom:20px;
  padding-left:50px;
  padding-right:50px;
}
.left-panel {
  padding-top:50px;
}
.right-panel, .left-panel {
  min-width: 50%;
  padding: 30px;
  min-height: calc(100vh - 40px); /* 80px is the combined height of the footer */
  box-sizing: border-box;
  
}
.right-panel {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top:150px;
}

.right-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/signup.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: grayscale(100%);
  z-index: -1;
}

.right-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, #0077b6, #00324e);
  mix-blend-mode: multiply;
  z-index: -1;
}

.list-unstyled {
  padding-left:20px;
  line-height:35px;
}
.form-control {
  min-width:150px;
}

.panel-link {
  color:#fff;
}

#login-message {
  border-left: 1px solid #f5f5f5;
  height:100%;
  padding-left:30px;
}
#error-container {
  padding-bottom:10px;
  color:#f20020;
}

#captcha {
  margin-top: 20px;
}

.pointer-hover {
  cursor: pointer;
}

/* Login Message Styles */
#login-message {
  font-size: 16px;
  line-height: 1.5;
}

#login-message h2 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

#login-message ul {
  margin-left: 20px;
}

#login-message ul li {
  margin-bottom: 10px;
  color: #333;
}

#login-message a {
  color: #2A6DB4;
  font-weight: bold;
  text-decoration: none;
}

#login-message a:hover {
  text-decoration: underline;
}
.form-control {
  background-color: #d8e7f3 !important; /* light blue */
  border: 1px solid #4a90e2; /* medium blue */
  color: #3e3e3e;
  border:none;
}

.form-control:focus {
  box-shadow: none;
  background-color: #d8e7f3 !important; /* light blue */
  border: 1px solid #327ad5; /* darker blue */
}

.body-container {
  min-height: calc(100vh - 40px); /* 80px is the combined height of the footer */
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .body-container {
    grid-template-columns: 1fr; /* This stacks the grid items vertically on smaller screens */
  }
}
