/* signIn.css */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}
.form-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.input-group {
  position: relative;
  margin-bottom: 16px;
}
.input-group i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #888;
}
.input-group input {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.input-group small {
  color: #d00;
  display: block;
  margin-top: 4px;
  font-size: 12px;
}
.forgot-password {
  text-align: right;
  margin: 8px 0 16px;
}
.forgot-password a {
  font-size: 12px;
  color: #0066cc;
  text-decoration: none;
}
.forgot-password a:hover {
  text-decoration: underline;
}

.signinForm button {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.signinForm button:disabled {
  background: #888;
  cursor: not-allowed;
}
#message {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
