/* Admin-specific styles */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Admin form container */
.admin-container {
  background-color: rgb(250, 230, 170);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 24px rgba(60, 20, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.admin-title {
  font-family: Choko, sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 2rem;
  color: rgb(60, 20, 0);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-label {
  font-weight: 600;
  color: rgb(60, 20, 0);
  font-size: 0.9rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 2px solid rgb(226, 199, 140);
  border-radius: 8px;
  font-family: Dosis, sans-serif;
  font-size: 1rem;
  background-color: white;
  color: rgb(60, 20, 0);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: rgb(60, 20, 0);
  box-shadow: 0 0 0 3px rgba(60, 20, 0, 0.1);
}

.form-input::placeholder {
  color: rgb(60, 20, 0);
  opacity: 0.6;
}

.submit-button {
  background-color: rgb(60, 20, 0);
  color: rgb(250, 230, 170);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-family: Dosis, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-button:hover {
  background-color: rgb(80, 40, 20);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 20, 0, 0.2);
}

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

/* Flash messages */
.flash-message {
  background-color: rgb(226, 199, 140);
  border: 2px solid rgb(60, 20, 0);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  color: rgb(60, 20, 0);
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: rgb(250, 230, 170);
  padding: 1rem 0;
  text-align: center;
  margin-top: auto;
}

.footer-text {
  color: rgb(60, 20, 0);
  font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
  .header-content {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    font-size: 2rem;
  }

  .nav {
    gap: 1rem;
  }

  .main {
    padding: 1rem;
  }

  .admin-container {
    padding: 2rem;
  }

  .admin-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .admin-container {
    padding: 1.5rem;
  }

  .admin-title {
    font-size: 1.8rem;
  }

  .form-input {
    padding: 0.6rem 0.8rem;
  }

  .submit-button {
    padding: 0.6rem 1.2rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-container {
  animation: fadeInUp 0.6s ease-out;
} 