  
      /* ================================
   General Body & Background
================================ */
body {
  height: 100vh;
  width: 100vw;
  background-image: url('images/login.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ================================
   Container Styling
================================ */
.container {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* ================================
   Logo Styling
================================ */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.form-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FF0080;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ================================
   Typography
================================ */
h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* ================================
   Form Inputs & Buttons
================================ */
input[type="text"],
input[type="password"],
button,
input[type="submit"] {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

/* Send OTP button */
button {
  background-color: #FF0080;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e60073;
}

/* ================================
   OTP Section Styling
================================ */
#otpBox input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 8px;
  box-sizing: border-box;
}

#verifyOtpBox input[type="submit"] {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background-color: #FF0080;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.3s ease;
}

#verifyOtpBox input[type="submit"]:hover {
  background-color: #e60073;
}

/* ================================
   Links
================================ */
.form-links,
.download-link {
  margin-top: 15px;
}

.form-links a,
.download-link a {
  text-decoration: none;
  color: #FF0080;
  font-weight: bold;
}

.form-links a:hover,
.download-link a:hover {
  text-decoration: underline;
}

/* ================================
   Responsive Styling
================================ */
@media (max-width: 480px) {
  h1 {
    font-size: 20px;
  }
  .form-logo {
    width: 90px;
    height: 90px;
  }
  input[type="text"],
  input[type="password"],
  button,
  input[type="submit"] {
    font-size: 14px;
    padding: 10px;
  }
  #otpBox input,
  #verifyOtpBox input[type="submit"] {
    font-size: 14px;
    padding: 12px;
  }
}

      