body {
	background-color: whitesmoke;
	font-family: arial;
	}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: gray;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  width: 100%;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}
.button:hover {
  background-color: darkorange;
	}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
.container {	
	width: 400px;
	height: 600px;
	overflow: hidden;
	margin: 0px auto;
	margin-top: 100px;
	}
#header {
	background-color: DarkOrange;
	color: #fff;
	font-size: 13px;
	line-height: 25px;
    margin: 0 auto;
  	vertical-align: middle;
	height: 25px;
	width: 70%;
    text-align: center;
    border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	}
#box {
	padding: 50px;
	background-color: #fff;	
	border-top: solid 3px darkorange;
	color: #000;
	font-size: 14px;
	font-weight: bold;
	width: auto;
}
.success, .warning, .error {
	border: 1px solid;
	margin: 10px 0px;
	padding:15px 10px 15px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
	font-weight: normal;
	}
.success {
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image:url('../images/success.png');
	}
.warning {
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../images/warning.png');
	}
.error {
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('../images/error.png');
	}
.input {
	width: 100%;
	height: 30px;
	border: solid 1px black;
	padding-left: 10px;
  	transition: all 1.0s;
	}
.input:focus {
	border: solid 1px darkorange;
	}