/* Email collection screen */

.email-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: #101c22;
  color: #ffffff;
}

.email-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.email-icon {
  width: 80px;
  height: 80px;
  background: rgba(19, 164, 236, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 40px;
}

.email-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.email-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto 32px;
}

.email-form {
  width: 100%;
  max-width: 360px;
}

.email-input {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #1f2933;
  background: #020617;
  color: #ffffff;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
  margin-bottom: 12px;
}

.email-input::placeholder {
  color: #6b7280;
}

.email-input:focus {
  border-color: #13a4ec;
}

.email-footer {
  padding: 16px 16px calc(32px + env(safe-area-inset-bottom, 0px));
  background: #101c22;
}

.email-submit-btn {
  width: 100%;
  height: 56px;
  background: #13a4ec;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-submit-btn:active {
  transform: scale(0.98);
  background: #1090d0;
}

.email-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}