/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Landing page styles */
.landing-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
}

.content {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.logo {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }
}

.tagline {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
}

.email-form {
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  background: white;
  color: #333;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.email-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

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

.submit-button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  background: #ff6b6b;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.submit-button:hover {
  background: #ee5a52;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }

  .email-input {
    width: 100%;
  }

  .submit-button {
    width: 100%;
  }
}

.flash-notice,
.flash-alert {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.flash-notice {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.flash-alert {
  background: rgba(255, 107, 107, 0.2);
  color: white;
  border: 1px solid rgba(255, 107, 107, 0.4);
}
