body {
  
  background: linear-gradient(145deg, #000814 0%, #00394A 40%, #006A67 100%);
  color: whitesmoke;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;  /* centers vertically */
  align-items: center;      /* centers horizontally */
  padding: 20px;
  margin: 20px;
  font-family: 'Exo 2', sans-serif;
}

h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

/* 🧊 The frosted-glass container */
.container {
  height: 550px;  /* ⬆️ more vertical space */
  width: 550px;   /* ⬆️ slightly wider */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);  /* just a little stronger blur for depth */
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column; /* stack input blocks vertically */
  justify-content: flex-start;  /* better spacing from top */
  align-items: center;  /* center horizontally */
  padding: 70px 60px 70px 60px ;   /* ⬆️ more padding for luxury feel */
  border-radius: 18px;  /* rounder corners = softer visual appeal */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5); /* deeper glass shadow */
  font-family: 'Bebas Neue', sans-serif;
  gap: 25px;  /* balanced spacing between sections */
}

/* 🧾 Label + input pairs */
.form-row {
  display: flex;
  flex-direction: column;  /* stack label and input vertically */
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

/* ✍️ Labels */
label {
  font-size: 1.2rem;
  font-weight: 500;
  color: whitesmoke;
  letter-spacing: 1px;
}

/* ⌨️ Input fields */
input {
  font-size: 1.1rem;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
  color: #00394A;
  width: 180px;
  text-align: center;
  transition: all 0.3s ease;
  font-family: 'Bebas Neue', sans-serif;
}

/* ✨ Subtle glow when focused */
input:focus {
  box-shadow: 0 0 10px #00FFD1;
  background: rgba(255, 255, 255, 0.95);
}

button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #000814;
  background: linear-gradient(145deg, #e0e0e0, #bfbfbf);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  font-family: 'Bebas Neue', sans-serif;
}

button:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #f0f0f0, #d0d0d0);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

.info{
  font-size: larger;
}

#allah{
  text-decoration: none;
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 3px;

}