/* WAE Brand Styling for Subscription Form */

/* Main body and container styling */
body {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1e3f 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container styling */
.wrap {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  width: 100%;
}

/* Logo styling */
.logo {
  text-align: center;
  margin-bottom: 40px;
}

.logo img {
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Heading styling */
h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* Form styling */
form {
  margin-top: 30px;
}

/* Label styling */
label {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

/* Input fields styling */
input[type="email"],
input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-sizing: border-box;
}

input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

input[type="email"]::placeholder,
input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Lists section styling */
.lists {
  margin: 25px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lists h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #e0e0e0;
}

/* Checkbox styling */
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #667eea;
  vertical-align: middle;
}

.lists label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 15px;
  color: #f0f0f0;
  transition: color 0.2s ease;
}

.lists label:hover {
  color: #667eea;
}

/* Submit button styling */
input[type="submit"],
button[type="submit"] {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  margin-top: 10px;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

input[type="submit"]:active,
button[type="submit"]:active {
  transform: translateY(0);
}

/* Footer link styling */
.footer {
  text-align: center;
  margin-top: 30px;
}

.footer a {
  color: #667eea;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Success/Error messages */
.alert {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Responsive design */
@media (max-width: 600px) {
  .wrap {
    padding: 35px 25px;
    margin: 20px;
  }
  
  h3 {
    font-size: 26px;
  }
  
  input[type="submit"],
  button[type="submit"] {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* Hide 'Powered by listmonk' footer */
.footer,
footer,
[class*="powered"],
[class*="footer"] {
  display: none !important;
}

/* Also hide any links containing 'listmonk' */
a[href*="listmonk"] {
  display: none !important;
}