/* Modern Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: #F7D4A7;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

main {
  background: rgba(255, 255, 255, 0.568);
  backdrop-filter: blur(3px);
  padding: 2.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0px 0px 40px rgba(29, 13, 5, 0.15);
  text-align: center;
  width: 100%;
  max-width: 440px;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

h1 .name {
    font-weight: 700;
    color: #E17163;
    text-shadow: 0px 0px 5px #e172633a;
}

.tagline {
    color: #2D3142;
    font-size: 1.1em;
    font-style: italic;
    position: relative;
    z-index: 1;
}

main > p {
  color: #718096;
  font-size: 1rem;
  line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  background-color: #f7fafc;
  transition: all 0.3s ease;
  font-family: inherit;
}

input:focus {
  outline: none;
  border-color: #edb78b;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(139, 156, 237, 0.1);
}

input::placeholder {
  color: #a0aec0;
}

button {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #f39d12cc 0%, #e67d22c7 100%);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3)
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

button:active {
  transform: translateY(0);
}

#message {
  margin-top: 1.5rem;
  padding: 0;
  font-size: 0.95rem;
  border-radius: 10px;
  font-weight: 500;
  min-height: 0;
  transition: all 0.3s ease;
}

#message:not(:empty) {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
  padding: 1rem;
}

/* Responsive Design */
@media (max-width: 480px) {
  main {
    padding: 2rem 1.5rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
}