* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  height: 100vh;
  overflow: hidden;
  background: url("BG.svg") no-repeat center center, #301565;
  background-size: cover;
  background-attachment: fixed;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 40px 60px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Profile Cards */
.profile-card {
  position: absolute;
  object-fit: cover;
  transform: rotate(-37deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  border-radius: 20px;
  top: 20vh;
  left: 15vw;
}

.profile-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.right-card {
  transform: rotate(37deg);
  right: 15vw;
  left: unset;
}

/* Center Content */
.center-content {
  text-align: center;
  color: white;
  flex: 1;
  max-width: 650px;
  margin: 0 80px;
  position: relative;
  margin-top: 10vh;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.logo-svg {
  height: 70px;
  width: auto;
}

.tagline {
  font-size: 16px;
  margin-bottom: 35px;
  opacity: 0.59;
}

.tagline em {
  font-style: italic;
  color: #c4b5fd;
  font-family: "Playfair Display", serif;
}

.description {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 35px;
}

.description em {
  font-style: italic;
  color: #c4b5fd;
  font-family: "Playfair Display", serif;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.email-input::placeholder {
  color: #666;
}

.email-input:focus {
  outline: none;
  background: white;
}

.notify-btn {
  padding: 15px 25px;
  background: #411D8E;
  color: white;
  border: none;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.notify-btn:hover {
  background: #6d42c9;
}

/* Responsive Design */
@media (max-width: 1300px) {
  .left-card {
    left: 10vw;
  }
  .right-card {
    right: 10vw;
  }
}
@media (max-width: 1050px) {
  .left-card {
    left: 5vw;
  }
  .right-card {
    right: 5vw;
  }
}
@media (max-width: 1400px) {
  .container {
    padding: 40px 40px;
  }

  .center-content {
    margin: 0 50px;
  }
}


@media (max-width: 1200px) {
  .container {
    padding: 40px 30px;
  }

  .center-content {
    margin: 0 40px;
  }
}

@media (max-width: 950px) {
  .no-mobile {
    display: none;
  }
  .logo-svg {
    height: 48px;
  }
  .tagline {
    font-size: 12px;
  }
  .description {
    font-size: 16px;
    width: 90%;
    text-align: center;
    margin: 0 auto 32px;
  }
  .left-card {
    left: -5vw;
    top: 15vh;
  }
  .profile-card img {
    width: 180px;
    height: 120px;
  }
  .right-card {
    right: -5vw;
    top: 15vh;
  }
  .center-content {
    margin: 0 5px;
  }
  .email-form {
    max-width: unset;
    width: 100%;
  }
  .email-input {
    padding: 10px 15px;
    font-size: 14px;
  }
  .notify-btn {
    font-size: 14px;
    font-weight: 500;
  }
}
