* {
  box-sizing: border-box;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  /* margin: auto; */
}

.row {
    /* margin: auto; */
    padding-bottom: 10px;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* custom style input file button */
body {
  font-family: sans-serif;
  background: #f2f2f2;
}
label {
  cursor: pointer;
  display: block;
  text-align: center;
  color: #828f94;
  background: #fff;
  border-radius: 4px;
  min-height: 140px;
  max-width: 300px;
  border: 2px dashed #e0dfd5;
  position: relative;
}
[type="file"] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.close {
  line-height: 1em;
  font-size: 16px;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-style: normal;
}
.filename {
  font-size: 20px;
  line-height: 140px;
}

.infotext {
    max-width: 300px;
}

/* custom styling here */
[for="attach-project-file"] {
    /* your styles here */
}

/* dark overlay after upload */
.overlay{
	filter: blur(2px);

}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit]  {
    width: 100%;
    margin-top: 0;
  }
  label, .infotext {
      max-width: 100%;
  }
}
