/* signin.css */
body {
  margin: 0;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.signin-header {
  background: #4cad49;
  padding: 1rem;
}
.signin-header img {
  height: 40px;
}

/* Center the content below header */
.signin-box {
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 700px;
  width: 90%;
  box-sizing: border-box;
  text-align: center;
}

/* Banner base (success or error) */
.banner {
  display: none;               /* shown via JS */
  position: relative;
  margin-top: 1rem;
  margin-left: auto;           /* center horizontally */
  margin-right: auto;          /* center horizontally */
  width: 60%;
  max-width: 300px;
  padding: 0.75rem;
  box-sizing: border-box;
  text-align: center;
  border-radius: 6px;
}

/* Success (green) */
.banner-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* Error (red) */
.banner-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Close “×” */
.banner-close {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}

.signin-box h1 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #4cad49;
}

.signin-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.signin-box input,
.signin-box select,
.signin-box button[type="submit"] {
  width: 60%;
  max-width: 300px;
  padding: 0.75rem;
  font-size: 1rem;
  box-sizing: border-box;
  border-radius: 6px;
}

.signin-box input,
.signin-box select {
  border: 1px solid #ccc;
}

.signin-box button[type="submit"] {
  background: #4cad49;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.signin-box button[type="submit"]:hover {
  background: #429c41;
}

.signin-box .assist-link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #4cad49;
  text-decoration: none;
}

.signin-box .assist-link:hover {
  color: #429c41;
  text-decoration: underline;
}

.signin-box .disclaimer-block {
  margin-top: 2rem;
  text-align: left;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.4;
}

.signin-box .disclaimer-block h2 {
  margin: 1rem 0 0.25rem;
  font-size: 1rem;
  color: #333;
}

.signin-box .disclaimer-block a {
  color: #4cad49;
  text-decoration: none;
}

.signin-box .disclaimer-block a:hover {
  text-decoration: underline;
}

/* footer styling */
.signin-footer {
  background-color: #4cad49;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}
