.chaiflicks-gift-wrap {
  min-height: 100vh;
  font-family: 'Poppins', 'Segoe UI', 'Arial', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 2rem; /* added padding for small screens */
  background: 
    linear-gradient(rgba(0, 4, 23, 0.75), rgba(0, 19, 114, 0.75)),
    url('https://vhx.imgix.net/ijfn/assets/7fa5d0c0-105f-41d1-b184-06f7d92ad0e5.jpg') center center/cover no-repeat;
}

.gift-container {
  background: rgba(0, 4, 23, 0.8);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  padding: 2rem;
  width: 100%;
  max-width: 400px; /* This fixes your width issue */
  text-align: center;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1.5px solid rgba(255,255,255,0.18);
  animation: fadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}



@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

.logo {
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 12px rgba(63,96,255,0.25));
}

h1 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff 30%, #3F60FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: #e0e6ff;
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
  font-weight: 400;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input[type="email"] {
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.13);
  color: #fff;
  outline: none;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px rgba(63,96,255,0.18);
  font-family: inherit;
  border: 1.5px solid rgba(255,255,255,0.18);
}

input[type="email"]:focus {
  box-shadow: 0 0 0 2px #3F60FF;
  background: rgba(255,255,255,0.18);
}

.gift-button {
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #3F60FF 0%, #6A82FB 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  box-shadow: 0 2px 12px rgba(63,96,255,0.2);
  font-family: inherit;
}

.gift-button:active {
  transform: scale(0.97);
}

.gift-button:disabled {
  background: #888;
  color: #ccc;
  cursor: not-allowed;
}

#message {
  padding-top: 1.2rem;
  font-size: 1.05rem;
  min-height: 1.2em;
  color: #fff;
  text-shadow: 0 1px 8px rgba(63,96,255,0.12);
} 