* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-navy: #063768;
  --primary-white: #ffffff;
  --text-primary: #063768;
  --text-secondary: rgba(6, 55, 104, 0.7);
  --border-color: rgba(6, 55, 104, 0.15);
  --border-focus: rgba(6, 55, 104, 0.3);
  --shadow-subtle: rgba(6, 55, 104, 0.08);
  --shadow-medium: rgba(6, 55, 104, 0.12);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--primary-white);
  color: var(--text-primary);
  line-height: 1.6;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--primary-white);
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 4rem 2rem;
}

/* Header & Logo */
.header {
  margin-bottom: 4rem;
  text-align: center;
}

.logo-wrapper {
  display: inline-block;
}

.logo {
  width: 280px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

/* Content Wrapper */
.content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.content-inner {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Welcome Section */
.welcome-section {
  text-align: center;
  margin-bottom: 3.5rem;
}

.welcome-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.welcome-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

/* Login Container */
.login-container {
  margin-bottom: 2.5rem;
}

.login-form {
  background: var(--primary-white);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.form-group {
  margin-bottom: 2rem;
  text-align: left;
}

.form-label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--primary-white);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}

.form-input:focus {
  outline: none;
  border-color: var(--border-focus);
  border-width: 1px;
  box-shadow: 0 0 0 1px var(--border-focus);
}

.form-input::placeholder {
  color: rgba(6, 55, 104, 0.3);
  font-style: italic;
}

.form-input:hover {
  border-color: var(--border-focus);
}

.submit-button {
  width: 100%;
  padding: 1.125rem 2rem;
  background-color: var(--primary-navy);
  color: var(--primary-white);
  border: 1px solid var(--primary-navy);
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
}

.submit-button span {
  position: relative;
  z-index: 1;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.submit-button:hover::before {
  left: 0;
}

.submit-button:hover {
  background-color: #052a4d;
  border-color: #052a4d;
}

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

.submit-button:focus {
  outline: 2px solid var(--primary-navy);
  outline-offset: 2px;
}

/* Status Message */
.status-message {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.status-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: var(--primary-white);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-text {
  font-size: 0.8125rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.footer-disclaimer {
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 3rem 1.5rem;
  }

  .header {
    margin-bottom: 3rem;
  }

  .logo {
    width: 220px;
  }

  .welcome-title {
    font-size: 2.75rem;
  }

  .welcome-subtitle {
    font-size: 0.9375rem;
  }

  .welcome-section {
    margin-bottom: 2.5rem;
  }

  .form-group {
    margin-bottom: 1.75rem;
  }

  .footer {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 2rem 1rem;
  }

  .logo {
    width: 180px;
  }

  .welcome-title {
    font-size: 2.25rem;
  }

  .welcome-section {
    margin-bottom: 2rem;
  }

  .form-input {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .submit-button {
    padding: 1rem 1.5rem;
    font-size: 0.8125rem;
  }

  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-text {
    font-size: 0.75rem;
  }

  .footer-disclaimer {
    font-size: 0.6875rem;
  }
}

/* Subtle animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-inner {
  animation: fadeIn 0.6s ease-out;
}

.welcome-section {
  animation: fadeIn 0.6s ease-out 0.1s both;
}

.login-container {
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.status-message {
  animation: fadeIn 0.6s ease-out 0.3s both;
}
