/* Navbar styles - reusing existing styles */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

#navbar ul {
  display: flex;
  list-style: none;
}

#navbar .item {
  margin: 0 15px;
}

#navbar .item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

#navbar .item a:hover {
  color: #ff6b6b;
}

.logo-box {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

#check {
  display: none;
}

#checkbtn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Authentication form styles */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  background-color: #f8f9fa;
  padding: 20px;
}

.form-container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 450px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
  font-size: 28px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.input-group input:focus {
  border-color: #ff6b6b;
  outline: none;
}

.error-message {
  color: #e74c3c;
  margin-bottom: 15px;
  font-size: 14px;
  min-height: 20px;
}

.form-container button {
  width: 100%;
  padding: 12px;
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-container button:hover {
  background-color: #ff5252;
}

.form-footer {
  margin-top: 25px;
  text-align: center;
  color: #666;
}

.form-footer a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 500;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  #navbar ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    top: 60px;
    left: -100%;
    flex-direction: column;
    text-align: center;
    transition: all 0.5s;
    z-index: 999;
  }

  #checkbtn {
    display: block;
  }

  #navbar .item {
    margin: 15px 0;
  }

  #check:checked ~ ul {
    left: 0;
  }

  .form-container {
    padding: 20px;
  }
} 