body {
  font-family: "Lato", sans-serif;
  background-image: url("background_tile.png");
  background-repeat: repeat;
  color: white;
  margin: 0;
  overflow-x: hidden;
}
  
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}
  
.sidebar a {
  white-space: nowrap;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
  
.sidebar a:hover {
  color: #f1f1f1;
}
  
.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}
  
.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}
  
.openbtn:hover {
  background-color: #444;
}

.closebtn {
  font-size: 10px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 5px 7.5px;
  border: none;
}
  
.closebtn:hover {
  background-color: #444;
}

.title{
  text-align: center;
  font-size: 50px;
}

#box{
  height: fit-content;
  width: 500px;
  background-color: #4b82c0;
  margin: auto;
  box-shadow: 30px 30px #bcfbf3;
  padding: 20px;
  margin-bottom: 75px;
}

.container {
  max-width: 500px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="tel"] {
  width: 95%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type="submit"] {
  background-color: #4CAF50;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

fieldset {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}

legend {
  font-size: 18px;
  font-weight: bold;
  color: white;
}
    
#button{
  font-size: 30px;
  width:150px;
  height: 50px;
  color:white;
  background-color: #73d8c7;
  text-align: center;
  padding: 20px;
  text-decoration:none;
  transition: background-color .2s;
}
    
#button:hover{
  background-color: #73c4b7;
  transition: background-color .2s;
}

#button:active{
  background-color: #36726b;
  transition: background-color .2s;
}

#box-image{
  height: 100%;
  border: 5px solid #36726b
}

#box-title{
  text-align: center;
}

#box-text{
  text-align: left;
  font-size: 20px;
}
  
#main {
  transition: margin-left .5s;
  padding: 16px;
}

#box_table{
  width: 100%;
  height: 100%;
}

td{
  vertical-align: top;
}

footer{
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #444;
  padding: 5px;
  width: 100%;
}

@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
}