*{
    box-sizing: border-box;
    margin: 0;
}

body{
    background: rgb(255, 255, 255);
    overflow-x: hidden;
}

.header{  
  display: flex;
  flex-direction: row;
  justify-content: start;
  text-align: center;
  padding-left: 1rem;
  width: 100%;
  flex-wrap: wrap;
  background-color: #e6decc;
  border-bottom: 1px solid #000000;
}

.topnav {
    padding-left: 1.5rem;
    padding-top: 1.35%;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto auto auto; 
    align-items: center;
    gap: 0.25rem;
  }

  .column{
    text-align: right;
    display: grid;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
  }

  .row{
    margin-right: 0.5rem;
  }

  /* .topnav input[type=text] {
    float: right;
    border: none;
    font-size: 17px;
    border-radius: 4px;
    width: 99.5%;
    border: 2px solid #524040;
    height: 30px;
  } */

  .login{
    display: grid;
    align-items: start;
    margin-left: auto;
    padding-right: 0.0rem;
    align-items: center;
    padding-top: 0.5%;
  }

  /* input:focus,textarea:focus,select:focus{
    border:1px solid #524040;
    -webkit-box-shadow:0 0 1px #007eff;
    -moz-box-shadow:0 0 2px #007eff;
    box-shadow:0 0 2px #007eff;
  } */

  #logo{
    align-items: center;
    text-decoration: none;
    font-size: 5rem;
    background-image: linear-gradient(to top, red 20%, rgb(0, 0, 0) 100%);

    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;   
    background-size:  100%;
} 

  .warning{
    color: rgb(255, 0, 0);
    font-size: 1.1rem;
    grid-column: 1 / 3;
    padding-bottom: 10px;
    padding-left: 5px;
    text-align: start;
  }
  
  .localLabel{
    margin-left: 0;
    font-weight: bold;
    color: rgb(0, 0, 0);
    font-size: large;
  }

.container{
  /* bottom Buttons holder */
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 1rem auto;
    color: #fff;
    overflow-x: hidden;
    column-gap: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
}

#noDataText{
  color: red;
  font-size: 5rem;
}

footer{
  text-align: center; 
  padding: 3px;
  background-color: #0d0c18;
  box-shadow: 0 50vh 0 50vh #0d0c18;
}

.footText{
  color: white;
  font-size: 1.75rem;
  font-family: 'Times New Roman', Times, serif;
}

.footMail{
  color: rgb(220, 218, 226) !important;
}

.footMail:hover{
  color: rgb(151, 143, 180) !important; 
}

  @media screen and (max-width: 600px) {
    .topnav input[type=text] {
      float: none;
      display: block;
      text-align: left;
      width: 98.75%;
      margin: 0;
    }
    .topnav input[type=text] {
      border: 1px solid #ccc;
    }

    .warning{
      padding-bottom: 0px;
    }
  }