body{
  background-color: #080a08;
  font-family: 'Share Tech Mono', sans-serif;
  color: #777a5b;
  margin: 0;
  padding: 0;
}

#headerbox{
  /* border:5px solid red; */
  top: 0;
  left: 0;
  margin: 0; 
  padding:0;
  width:100%;
  position: sticky;
  background-color: #10120f;
  display:flex;
  flex-wrap: wrap;
  overflow:hidden;
  flex-direction: row; /* Stack content vertically */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */  
}

#header{
  /* border:5px solid blue; */
  flex:50%;
  position:sticky;
  color: rgb(212,194,121);
  letter-spacing: 10px;
  font-size: 25px;
  font-family: 'Gajraj One', sans-serif;
  /* overflow: hidden; */
}

#header h1{
  margin: 0px;
  font-size: 45px;
}

#headerlist{
  flex:1;
  flex:50%;
  display:flex;
  position:sticky;
  flex-wrap: wrap;                                      
} 

.headercolumn{
  margin:5px;
  flex:1;
  max-width: 100%;
}

hr{
  border: none; 
  height:3px;
  vertical-align: middle;
  clear:bottom;
  background-color:rgb(102, 106, 72);
}

h2{
  margin:10px;
  color: rgb(212,194,121);
  float: left;
}

h3{
  margin:10px;
  color: rgb(102, 106, 72);
  float: left;
  clear: left;
}

.nav{
  text-align:left;
  font-size:20px;
  padding:20px;
  line-height:40px;
} 

.item:hover{
  box-shadow: 0px 0px 5px #78beff;
}

.titlecaption{
  text-align: center;
  color: #070806;
  font-size: 25px;
  text-align:left;
  grid-row: 2 / 2;
  margin-bottom:10px;
  margin-top:10px;
}

.row {
  /* border:5px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
  margin:5px;    
  width:100%;  
  height:auto;
}

.column {
  /* border:5px solid pink; */
  object-fit: contain;
  margin:5px;
  flex:1;
  max-width: 70%;
  flex-basis:150px;
}

.column img{
  /* border:5px solid purple; */
  display:block;
  margin:10px;
  max-width: 100%;
}

.logocontainer{
  float:right;
  flex:1;
  flex-direction: column;
  margin:auto;
  padding:20px;
  overflow:hidden;
  object-fit: contain;
}

#main{
  /* border:5px solid blueviolet; */
  display:inline-block;
  width:100%;
  height:100%;
}

.mainboxes{
  justify-content: center;
  align-items: center;
  width:95%; 
  height: auto;
  margin: auto;
  /* border:5px solid red; */
}

.textbox{
  /* border:5px solid red; */
  border-radius: 50px;
  background-color: #080a08;
}

.textbox .textfield{
  text-align: center;
  font-size: 20px;
  border-radius: 20px;
  background-color: #10120f;
  text-align: left; 
  margin:20px;
  padding:20px;
  clear: left;
}

#title{
  /* border:5px solid blue; */
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#headerlist{
  display:flex;
  justify-content: left;
  align-items: left;
  margin: auto;  
  padding:10px;
  float:left;
}

.listitem {
  margin-right:50px;
  font-size:20px;
  color:#7179b1;
}

.listitem img{
  margin-left:100px;
  width:300px;
}

#footerlist{
  flex-wrap: wrap;
  display:flex;   
  margin:auto;
  padding:20px;
  justify-content: center;
  align-items: center;
  gap:10px;
}

#footerlist a{
  color: #7179b1;
}

a:link{
  text-decoration: none;
  color: #7179b1;
}

a:visited{
  color: #7179b1;
  display: block
}

a:hover{
  text-shadow: 0px 0px 2px #78beff;
  display: block
}

/* password code ---------------------*/


    body{
        font-family: 'Share Tech Mono', sans-serif;
        max-width: 600px;
        margin: 50px auto;
        padding: 20px;
    }

    #loginForm {
        background-color: #10120f;
        padding: 30px;
        border-radius: 8px;
        text-align: center;
    }

    #passcontainer {
        display: none;
        background-color: #e8f5e8;
        padding: 30px;
        border-radius: 8px;
        text-align: center;
        border: 2px solid #4CAF50;
    }

    input[type="password"] {
        padding: 10px;
        font-size: 16px;
        border: 2px solid #7179b1;
        border-radius: 4px;
        margin: 10px;
    }

    button {
        padding: 10px 20px;
        font-size: 16px;
        background-color: #7179b1;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }



    #submitbutton{
        padding: 10px 20px;
        font-size: 16px;
        background-color: #7179b1;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    #accessbutton {
        padding: 10px 20px;
        font-size: 16px;
        background-color: #7179b1;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    button:hover {
        background-color: #474d7c;
    }

    .error {
        color: red;
        margin-top: 10px;
    }