* {
    box-sizing: border-box;
  }

  html{
    scroll-behavior: smooth;
  }

  /* input{
    text-transform: uppercase;
  } */
  
  body {
    margin: 0;
    font-family: Poppins, Helvetica, sans-serif;
  }

  img[alt=UEW],img[alt=DESA]{
    height: 12vh;
  }
  
  img[alt=EC]{
    height: 16vh;
  }
  
  .name-responsive {
    display: none;
  }
  
  .topnav {
    overflow: hidden;
    background-color: #474e5d;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
  }

  button:disabled{
    background-color: gray;
  }
  
  .topnav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .topnav a.active {
    background-color: #04AA6D;
    color: white;
  }
  
  .topnav .icon {
    display: none;
  }
  
  .topnav a.regbtn {
    float: right;
    background-color: #cc3335;
    opacity: 0.9;
  }
  .topnav a.regbtn:hover {
    color: white;
    opacity: 1;
  }
  
  .regdiv {
    padding: 15px;
  }
  .welcome {
    padding: 15px;
    text-align: center;
  }
  .container {
    text-align: center;
    background-color: #f1f1f1;
  }
  button {
    font-weight: bold;
    font-size: 13pt;
    padding: 15px 30px;
    background-color: #cc3335;
    color: white;
    cursor: pointer;
    border: none;
    opacity: 0.9;
  }
  button:hover {
    opacity: 1;
  }
  .notice {
    color: red;
    /*font-weight: 100;*/
    font-size: 10pt;
  }
  
  .header {
    background-color: #f1f1f1;
    padding: 20px 20px 20px 20px;
    text-align: center;
  }
  
  .footer {
    padding:20px; 
    background-color: #474e5d; 
    color: #ddd; 
    overflow:auto; 
    font-size:small;
    display: flex;
    justify-content: space-between;
    position: fixed; 
    left: 0; 
    bottom: 0;
    width: 100%;
  }

  .statbtn:disabled{
    background-color: gray;
  }
  
  
  
  @media screen and (max-width: 600px) {
    body {
      margin: 0;
    }
    
    .name-responsive {
      display: block;
    }
  
    .name {
      display: none;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }
  
  @media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  }
  
