/*
.button {
  background-color: #4CAF50; 
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  cursor: pointer;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  border-radius: 3px 3px;
}


.button {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
}

.button:hover {
  background-color: #008CBA;
  color: white;
}
*/

body{
	background: #ffcc00;
	font-family: 'Trebuchet MS', Arial, sans-serif;
}

#container {
	width:400px;
	margin:0 auto;
	margin-top:10%;
	padding: 30px;
	border: 1px solid #f1f1f1;
	background: #fff;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

form {
	width:100%;
}

#container h1{
	margin: 0 auto;
	padding-bottom: 20px;
	padding-top: 10px;
}

/* Full-width inputs */
input[type=text], input[type=password], input[type=email], select, input[type=date], input[type=number], textarea{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
#case-upload{
	display: inline-block;
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

#case-upload input[type=file]{
    left: 0;
    top: 0;
    position: absolute;
    font-size: 50px;
    margin-left: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    z-index: 1;
}
.btn-upload {
	position: relative; 
	cursor: pointer;
	background-color: #ffcc00;
	border: 1px solid #ccc;
	padding: 25px 20px;
	font-size: 22px;
	font-weight: bold;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
   z-index: 2;
   pointer-events: none;
}

.btn-upload:hover {
	background-color: white;
	color: #ffcc00;
	border: 2px solid #ffcc00;
}

/* Set a style for all buttons */
input[type=submit] {
	background-color: #ffcc00;
	color: black;
	font-weight: bold;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	border-radius: 3px 3px;
	pointer-events: all;
}
input[type=submit]:hover {
	background-color: white;
	color: #ffcc00;
	border: 2px solid #ffcc00;
	padding: 12px 18px;
}