@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body{
    background: rgb(6,106,85);
    background: -moz-linear-gradient(90deg, rgba(6,106,85,1) 0%, rgba(33,193,159,1) 41%, rgba(122,217,151,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(6,106,85,1) 0%, rgba(33,193,159,1) 41%, rgba(122,217,151,1) 100%);
    background: linear-gradient(90deg, rgba(6,106,85,1) 0%, rgba(33,193,159,1) 41%, rgba(122,217,151,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#066a55",endColorstr="#7ad997",GradientType=1);
}

.img{
    width: 400px; 
    height: 200px;
    margin-left: -4px;
}

input[type=file] {
  position: absolute;
  right: -9999px;
  visibility: hidden;
  opacity: 0;
}

input[type=submit] {
  position: relative;
  padding: 1rem 3rem;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: bold;
  font-size: 16px;
  background-color: white;
  transition: .5s;
}




input[type=submit]:hover {
  background: white;
  color: black;
  cursor: pointer;
  transition: 0.2s all;
  font-weight: bold;
  font-size: 20px;
  opacity: 65%;
  transition: .5s;
}

label {
  position: relative;
  padding: 1rem 3rem;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 16px;
  font-weight: bold;
  font-size: 16px;
  background-color: white;

}
label:hover {
  background: white;
  color: black;
  cursor: pointer;
  transition: 0.2s all;
  font-weight: bold;
  font-size: 20px;
  opacity: 65%;

}

div.files {
  background: #eee;
  padding: 1rem;
  margin: 2rem 0;
  border-radius: 10px;
}
div.files ul {
  list-style: none;
  padding: 0;
  max-height: 150px;
  overflow: auto;
}
div.files ul li {
  padding: 0.5rem 0;
  padding-right: 2rem;
  position: relative;
}
div.files ul li i {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translatey(-50%);
}
div.container {
  width: 100%;
  padding: 0 4rem;
  text-align: center;
 
}

span.file-size {
  color: #999;
  padding-left: 0.5rem;
}





