@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600&display=swap');

body {
  background-color: #fefefe;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 16px;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.site-title {
  font-size: 28px;
  margin-left: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 1000;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.site-nav ul li a {
  color: #000;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
}

.site-nav ul li a:hover {
  color: #3DB5E6;
}

#register {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-bottom: 150px;
}

#welcome-text {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

#welcome-text::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #FF9F20;
  animation: underlineSlide 2s forwards;
}

@keyframes underlineSlide {
  to { width: 100%; }
}

#basicContainer {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  width: 100%;
  max-width: 400px;
}

#basicContainer p {
  margin: 10px 0;
}

form input[type="text"],
form input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.submit-button {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border: none;
  border-radius: 4px;
  background: #497447;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background: #5db9ff;
}

a.nav-link {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 4px;
  background: #FF9F20;
  color: #fff;
  font-size: 14px;
  width: 100px;
  text-decoration: none;
  transition: background 0.3s ease;
}

a.nav-link:hover {
  background: #497447;
}

/* Bottom bar */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67px;
  background-color: #587200;
  z-index: 10;
}