

.register {
    display: none;
  
    animation: slide 1s ease;
}

.login{
    animation: slide 1s ease; 
}

.container{
    /* margin-top: 200px; */
    box-shadow: 0px 3px 5px;
position: relative;
 margin-left: 40%;
top: 130px;
 width: fit-content;
background-color: rgba(0,0,0,0.7);
padding: 30px;
/* z-index: 3; */
animation: slide 0.6s ease;
}



input{
    width: 100%;
    background-color: lightgray;
    height: 30px;
    border: none;

}
  


input:focus{
    outline: none;
}

  
 
body{
   
    background-color: rgb(240, 240, 240);
}

button{
  
    padding: 6px;
    margin-top: 10px;
    border: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

label{
    color: white;
    margin-top: 10px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

p{
    margin-top: 10px;
}

p a{
    color: gold;
}

#n1{
    transition: 0.2s ease;
    width: 100%;
    position: fixed;
    z-index: 1;
    /* margin-bottom: 300px; */
}
.navbar {
    
    transition: 0.69s;
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
    background-color: gold;
  
  }
  .navbar:hover{
    background-color: #f0f0f0;
  }
  .navbar ul{
    list-style-type: none;
   margin-left: 500px;
    /* margin-bottom: -20px; */
  }
  .navbar li {
    float: left;
    /* border: 3px solid black; */
    
    margin-top: 10px;

    

    
  }
  
  .navbar li a {
    /* display: inline-block; */
    color: #000000;
    /* text-align: center; */
    font-size: medium;
   margin-right: 20px;
  /* padding-top: 30px; */
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: 0.1s ;
    
    /* border: 3px solid black; */
    /* width: fit-content; */

  }
  
  .navbar li a:hover {
   border-bottom: 4px solid black;
  
  }
.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown1:hover .dropdown-content {
  display: block;
}


footer{
    position: relative;
    top: 200px;
    background-color: rgb(21, 21, 21);
    /* border: 4px solid green; */
   margin-bottom: 50px;
    padding-top: 40px;
    padding-bottom: 10px;
}

/* html{
     border: 3px solid blue; 
    height: fit-content;
    background-color: rgb(10, 12, 21);
} */
#holdfoot{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 0;
    
}

#holdfoot ul {
    margin-bottom: 0;

  }
#sign td > input{
    background-color:  rgb(21, 21, 21);
    color: #fff;
} 

#sign td > input:focus{
  outline: none;
} 
#sign td > #suh{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-top: 10px;
    border-radius: 5px;
    padding: 5px;
    color: #000000;
    font-size: 20;
    background-color:  rgb(123, 122, 122);
} 
#sign p, #contact p, #acc p, #buy p, #info p{
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   
}

#info li a, #buy li a, #acc li a, #contact li a{
    color: white;
    text-decoration: none;
    font-size: small;
    
}
#info li a:hover, #buy li a:hover, #acc li a:hover, #contact li a:hover{
    color: rgb(188, 39, 39);
}
#info ul, #buy ul, #acc ul, #contact ul{
    list-style-type: none;
}



#alert{
    background-color: rgb(250, 97, 97);
}
  #aler1{
    background-color: rgb(250, 97, 97);
  }

  #fine1{
    background-color: lightgreen;
  }
  #fine{
    background-color: lightgreen;
  }
@keyframes slide 
{
  0%{
  opacity: 0;
  }

100%{
opacity: 1;
}
}