
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(
    135deg,
    #1e3c72,
    #2a5298
  ); 
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* Container */
.container {
  width: 100%;
  max-width: 500px; 
  padding: 30px;
}

/* Form Card */
.form-card {
  background: rgba(
    255,
    255,
    255,
    0.2
  );
  border-radius: 15px; 
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  text-align: center;
}

/* Heading */
.form-card h2 {
  margin-bottom: 20px;
  font-size: 32px; 
  font-weight: bold;
}

/* Paragraph */
.form-card p {
  font-size: 18px; 
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form label {
  font-size: 18px;
  text-align: left;
  color: #f5f5f5;
}

form input[type="text"] {
  padding: 14px; 
  font-size: 16px; 
  border: none;
  border-radius: 8px; 
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  outline: none;
}

form input[type="text"]::placeholder {
  font-size: 15px; 
  color: #ddd;
}

/* Captcha */
.captcha {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha label {
  font-size: 16px; 
}

/* Button */
.btn {
  background: #36d1dc;
  background: linear-gradient(
    90deg,
    #36d1dc,
    #5b86e5
  ); 
  border: none;
  border-radius: 8px;
  color: #fff;
  padding: 14px 20px; 
  font-size: 20px; 
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: linear-gradient(
    90deg,
    #5b86e5,
    #36d1dc
  ); 
}

/* Footer Text */
.footer-text {
  margin-top: 30px;
  font-size: 16px; 
}

.footer-text a {
  color: #ffdd57;
  text-decoration: none;
  font-weight: bold;
}

.footer-text a:hover {
  text-decoration: underline;
}
