/* Background styling */
body {
  background: url("assets/images/stars-bg.jpg") no-repeat center center/cover;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* Centering login box */
.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Wider Login Box */
.ad_login_box {
  background: rgba(20, 20, 50, 0.9);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  max-width: 650px;
  /* Increased width */
  width: 90%;
  text-align: center;
}

.as_login_detail h1 {
  font-size: 28px;
  font-weight: 700;
  color: #ffd700;
}

.as_login_detail p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ddd;
}

/* Form Fields */
.form-control {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid #ffd700;
  border-radius: 8px;
  padding: 12px;
}

.form-control::placeholder {
  color: #ccc;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Sign-in Button */
.as_btn {
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  color: #000;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.as_btn:hover {
  background: linear-gradient(45deg, #ff8c00, #ffd700);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

/* Remember Me Checkbox */
.as_login_data label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ad_login_box {
    width: 95%;
    padding: 30px;
  }
}
