* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "arial", serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
    background-color: black; 
    background-image: url('https://res.cloudinary.com/djmffrvpg/image/upload/v1747856333/bln-4_w7h5lv.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
  max-width: 800px;
  text-align: center;
  animation: fadeIn 1.5s ease-in;
  position: relative; 
  z-index: 100; 
}

.logo {
  width: 50%;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
  position: relative; 
  z-index: 100; 
}

.email-section {
  position: relative; 
  z-index: 100; 
}

.email-heading {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.email-input {
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: white;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: white;
  background-color: #fff;
  color: #000;
}

.email-input:focus::after {
  outline: none;
  border-color: white;
  background-color: #fff;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.submit-btn {
  padding: 0.75rem;
  background: white;
  color: black;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.submit-btn:hover {
    background-color: #0049D1;
    color: #fff;
    opacity: 0.9;
}

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

@media (max-width: 600px) {
  #myVideo {
    display: none; 
  }
  
  body {
    background-color: black; 
    background-image: url('https://res.cloudinary.com/djmffrvpg/image/upload/v1747856333/bln-4_w7h5lv.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .container {
    padding: 1rem;
  }
  .main-message {
    font-size: 1rem;
  }
  .email-heading {
    font-size: 0.9rem;
  }
  .logo {
    width: 150px;
    margin-bottom: 3rem;
  }
  
}