@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-image: url("Icons/backgroundimg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.blur-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  z-index: 0;
}

.beta-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 560px;
  width: 100%;
}

.beta-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.beta-logo i {
  font-size: 22px;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.beta-wrap h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.beta-wrap p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.beta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 40px;
}

.beta-form input {
  flex: 1;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 16px;
  font-size: 14px;
  color: #fff;
  outline: none;
  font-family: inherit;
}

.beta-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.beta-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.beta-form button {
  height: 48px;
  padding: 0 24px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.beta-form button:hover {
  opacity: 0.9;
}

.beta-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(19, 115, 51, 0.2);
  border: 1px solid rgba(19, 115, 51, 0.4);
  border-radius: 10px;
  padding: 16px 24px;
  color: #4caf50;
  font-size: 15px;
  font-weight: 500;
  max-width: 440px;
  margin: 0 auto 40px;
}

.beta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.beta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.beta-feature i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}