/*ALLBOXES*/
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"],
select{
	height: 25px;
	box-sizing: border-box;
	outline: none;
	border: 1px solid lightgray;
}

textarea{
	padding: 5px;
	line-height: 20px;
	outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus{
	box-shadow: 0px 0px 5px red;
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="password"]{
	padding: 0 5px;
}
/*ALLBTN*/
button{
	height: 30px;
	cursor: pointer;
	border: none;
	background-color: #1C3334;
	color:white;
}
button:hover{
	background-color: #2d5153;
}

.red{
	background-color: #450101;
	color: white;
}
.red:hover{
	background-color: darkred;
}

.green{
	background-color: #102b10;
	color: white;
}
.green:hover{
	background-color: green;
}

/*BOXHOLDER*/
.boxhldr{
	display: inline-block;
	padding: 10px 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	min-width: 200px;
	margin: 5px;
}
.boxhldr table{
	width: 100%;
}

/*BOXES*/
.boxhldr input[type="text"],
.boxhldr input[type="number"],
.boxhldr input[type="date"],
.boxhldr input[type="password"],
select{
	width:100%;
}

/*BTNHOLDER*/
.btnhldr{
	display: inline-block;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	min-width: 200px;
	margin: 10px;
}

.btnhldr button{
	width:100%;
}