/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #caa0d3, #f5e4f7);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #4b2c5e;
  overflow: hidden;
}

/* Main Container */
.container {
  background: rgba(255, 255, 255, 0.7);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  max-width: 450px;
  width: 100%;
  animation: fadeIn 1.2s ease-out;
}

/* Logo */
.logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.logo .vivir {
  color: #00bfa6;
  font-weight: 700;
}

.logo .arte {
  color: #7d4e8c;
  font-style: italic;
  margin-left: 5px;
}

/* Title */
.title {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Subtitle */
.subtitle {
  font-size: 1rem;
  margin-bottom: 30px;
}

/* Form */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe-form input {
  padding: 12px;
  border: 2px solid #d1a2cf;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.subscribe-form input:focus {
  border-color: #7d4e8c;
}

.subscribe-form button {
  padding: 12px;
  background-color: #7d4e8c;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #643b72;
}

/* Small Text */
.small-text {
  margin-top: 30px;
  font-size: 0.9rem;
  color: #5c416c;
}

.small-text a {
  color: #4b2c5e;
  font-weight: bold;
  text-decoration: none;
}

.small-text a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }

  .title {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .subscribe-form input, .subscribe-form button {
    font-size: 0.95rem;
  }
}
