:root {
  --veloria-orange: #ff7b1a; /* Adjusted to match your logo */
  --dark-bg: #0f0f0f;
  --text-light: #ffffff;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Subtle background glow */
.glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
    circle,
    rgba(255, 123, 26, 0.15) 0%,
    rgba(15, 15, 15, 0) 70%
  );
  z-index: 0;
}

.container {
  text-align: center;
  z-index: 1;
  max-width: 600px;
  padding: 20px;
}

.logo-main {
  width: 280px;
  margin-bottom: 20px;
}

.bottle-icon {
  width: 80px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 10px rgba(255, 123, 26, 0.5));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

p {
  font-size: 1.1rem;
  color: #b3b3b3;
  margin-bottom: 40px;
  line-height: 1.6;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

input[type="email"] {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s;
}

input[type="email"]:focus {
  border-color: var(--veloria-orange);
}

button {
  background-color: var(--veloria-orange);
  color: black;
  border: none;
  padding: 15px 40px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 123, 26, 0.4);
}

.socials {
  margin-top: 50px;
}

.socials a {
  color: var(--veloria-orange);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 15px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.socials a:hover {
  opacity: 1;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: #444;
}
