/* Reset + base layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0e0e;
  color: #f5f5f5;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 600px;
  padding: 2rem;
}

/* Typography */
.title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: 2rem;
}

.subtitle span {
  color: #ffffff;
  font-weight: 500;
}

.divider {
  width: 50px;
  height: 2px;
  background: #f5f5f5;
  margin: 1rem auto 1.5rem;
  opacity: 0.6;
}

.quote {
  font-style: italic;
  color: #aaa;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* Form styles */
.form input {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 4px;
  background: #1a1a1a;
  color: #f5f5f5;
  font-size: 1rem;
}

.form input:focus {
  border-color: #fff;
  outline: none;
}

.form button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form button:hover {
  background: #fff;
  color: #000;
}

.link {
  display: inline-block;
  margin-top: 1rem;
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
}

.link:hover {
  color: #fff;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease-out forwards;
}

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