/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #1A0F00;
  background-image: url('images/background1.png');
  background-size: cover;
  background-repeat: repeat;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}
.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}
.logo-box {
  text-align: center;
  /* margin-bottom: 30px; */
  
}
.logo-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(75%) sepia(63%) saturate(1000%) hue-rotate(1deg) brightness(95%) contrast(90%);
}
.logo-img {
  /* width: 80px; */
  height: 220px;
  
}
/* .large-logo {
  width: 120px; /* or your preferred size */
  height: 120px;
  margin-bottom: 20px;
} */
.logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #E6A72E;
  margin-top: 8px;
}
.login-box {
  background-color: #1f0800;
  border: 1px solid #d4af37;
  border-radius: 15px;
  padding: 25px 20px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  box-shadow: 0 0 25px rgba(230, 167, 46, 0.7); /* Yellowish glow */
    border-radius: 16px; /* Optional for softer edges */
}
.login-box h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: white;
}
.input-group {
  display: flex;
  align-items: center;
  background-color: #3D3D3D;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}
.input-group i {
  color: #AAA;
  margin-right: 10px;
  font-size: 16px;
}
.input-group input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  color: white;
  font-size: 15px;
}
.input-group input::placeholder {
  color: #AAA;
}
.captcha-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #3D3D3D;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
}
.checkbox-container {
  display: flex;
  align-items: center;
  color: #AAA;
  font-size: 14px;
  position: relative;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  height: 18px;
  width: 18px;
  background-color: #2B2B2B;
  border: 2px solid #AAA;
  border-radius: 3px;
  margin-right: 10px;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #E6A72E;
  border-color: #E6A72E;
}
.checkbox-label {
  margin-left: 5px;
}
.captcha-info {
  text-align: right;
}
.captcha-logo {
  width: 45px;
  height: auto;
  margin-bottom: 5px;
}
.recaptcha-text {
  color: #AAA;
  font-size: 13px;
}
.privacy-text {
  color: #777;
  font-size: 11px;
}
.login-btn {
  width: 100%;
  background-color: #E6A72E;
  border: none;
  border-radius: 8px;
  padding: 12px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.login-btn:hover {
  background-color: #d0901e;
}
