/* CSS for the login page */
html,
body {
  overflow: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}
.auth-contain {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Enhanced form styles */
.auth-box {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.form-control {
  border-radius: 6px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
  border: 1px solid #ced4da;
}
.form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.input-group-text {
  background-color: #f8f9fa;
  border-right: none;
}
.input-group .form-control {
  border-left: none;
  border-radius: 0 6px 6px 0;
}
.btn-hover {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}
.btn-success {
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success {
  border-color: #28a745;
  color: #28a745;
}
.btn-outline-success:hover {
  background-color: #28a745;
  color: #fff;
}

.auth-logo-container img {
    width: auto;
    height: 150px !important;
}
.text-underline {
  text-decoration: underline;
}


/*responsive styles*/
@media (max-width: 768px) {
  footer {
    font-size: 0.8rem !important;
  }

  footer img {
    height: 35px !important;
  }
  #institution-acronym, #institution-name {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 480px) {
  footer {
    font-size: 0.7rem !important;
  }

  footer img {
    height: 30px !important;
  }

  footer a img {
    margin-right: -10px !important;
    padding-bottom: 8px !important;
  }
}
