/* Base and layout */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #00264d;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  animation: fadeIn 0.5s ease-in;
}

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

.container {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 300px;
  text-align: center;
  animation: fadeIn 0.5s ease-in;
}

img {
  width: 70px;
  margin-bottom: 10px;
}

h1 {
  color: #1f2937;
  font-size: 20px;
  margin: 10px 0;
}

input {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #e05f1e;
  color: #ffffff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #8e3600;
}

/* Focus styles for accessibility */
input:focus,
button:focus {
  outline: 2px solid #e05f1e;
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 400px) {
  .container {
    padding: 20px;
  }
  h1 {
    font-size: 18px;
  }
}

p {
  font-size: 12px;
  color: #6b7280;
  margin-top: 20px;
}

footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 8px;
  color: #6b7280;
  max-width: 600px;
}

footer a {
  color: #6b7280;
  text-decoration: underline;
  margin: 0 5px;
}

/* utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
