/* demo.css - Bright WebApp Theme */
:root {
  --primary-color: #058CE4;
  --primary-hover: #047bc9;
  --bg-color: #ffffff;
  --card-bg: #fff;
  --card-hover: #ffffff;
  --text-main: #1A2B3C;
  --text-sub: #4A5568;
  --border-color: #e2e8f0;
  --shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: var(--text-main);
}

.animate {
  background: var(--card-bg);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 500px;
  text-align: center;
  border: none;
  color: var(--text-main);
  transition: background 0.3s, border-color 0.3s;
}


.animate img {
  max-height: 240px;
  height: auto;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto 1.5rem;
}

.heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--text-main);
}

.subheading {
  font-size: 0.875rem;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
}

form {
  text-align: left;
}

.center {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 0.5rem;
}

input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(5, 140, 228, 0.1);
}

button {
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 0.875rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 0.5rem;
  width: 100%;
}

button:hover {
  background-color: var(--primary-hover);
}

button:active {
  transform: scale(0.98);
}

@media (max-width: 480px) {
  .animate {
    padding: 2rem;
    margin: 1rem;
    box-shadow: none;
    border: none;
    background: transparent;
  }
}