html {
  scroll-behavior: smooth;
}

.loginBody{
  background-color: rgb(35, 35, 35);
  font-family: Inter, sans-serif;
  color:white;
  align-items: center;
}

.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;            
  background-color: rgba(0, 0, 0, 0.2); 
  padding: 15px 30px;             
  margin-bottom: 40px;
}

#titleLink{
  text-decoration: none;
}

.nav-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item{
  color: #ffffff;
  text-decoration: none;          
  font-weight: 400;
  font-size: 16px;
  padding: 8px 16px;
  transition: all 0.2s ease-in-out;
  border-radius: 5px;
}

.nav-item:hover{
    background-color:rgba(255, 255, 255, 0.15); 
    color: yellow;
}

.logoImg2{
    width: 50px;
    height: auto;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.auth-wrapper {
  display: flex;
  min-height: calc(100vh - 80px); 
  width: 100%;
}

#loginContainer{
  margin: auto; 
  display: flex;
  flex-direction: column;
  background-color:rgba(15, 93, 63, 0.94);
  border-radius: 10px;
  padding: 30px;
  align-items: center; 
  width: 400px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#loginHeader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; 
    width: 100%;
}


.logoImg {
    width: 50px;
    height: auto;
}


#loginContainer h1 {
    margin: 0;
    font-size: 28px;
    color: white;
    white-space: nowrap;
    margin-left: -10px;
}

#loginForm {
    text-align: center;
}

#userName{
    background-color:rgb(39 144 223 / 94%);
    color:white;
    font-size: medium;
    border-radius: 8px;
    padding: 5px;
}

#userName::placeholder{
    color:rgb(125, 113, 113);
}

#password{
    background-color:rgb(39 144 223 / 94%);
    color:white;
    font-size: medium;
    border-radius: 8px;
    padding: 5px;
}

#password::placeholder{
    color:rgb(125, 113, 113);
}

#hereBtn{
    color: yellow;
}

#hereBtn:hover{
    color: purple;
}

#submit{
    background-color:rgb(39 144 223 / 94%);
    color:white;
    font-size: medium;
    border-radius: 8px;
    padding: 10px;
    width: 100px;
}

#submit:hover{
    filter:brightness(0.5);
}

#feature-heading{
    text-align: center;
}

.feature-container{
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

#feature-section{
    display: flex;
    background-color: rgb(126 163 163);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 16px;
    padding: 20px;
    width: 300px;
    margin-bottom: 10px;
}

#feature-section:hover{
    transform: scale(1.05);
}

#feature-section h2{
    text-align: center;
    margin: 0;
}

/* For Error Page */
.errorBody{
    background-color: rgb(35, 35, 35);
    font-family: Inter, sans-serif;
    color:white;
}

.sadDoggo{
    width: auto;
    height: 400px;
}

#message{
    align-items: center;
    text-align: center;
}
/* End of Error Page */

@media (max-width: 690px) {
 .hamburger {
    display: block;
    margin-right: -20px;
  }

  .nav-right { 
    display: none; 
    flex-direction: column; 
    position: absolute; 
    top: 60px; 
    left: 0; 
    width: 100%; 
    background: #1a1a1a; 
    padding: 20px; 
    z-index: 1000;
  }
  
  .nav-right.active { 
    display: flex !important;
    text-align: center;
  }
  
  .nav-right .nav-item {
    width: 100%;
    max-width: 200px; 
    text-align: center;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 4px auto;
  }
    

}