.details{
    max-width:100%;
    text-align:center;
    margin:10px auto;
    padding:30px;
    line-height:1.4em;
    background:rgb(249, 244, 221);
    border-radius: 10px;
    font-weight: normal;
	font-size: 16px;
	color:#009087;
	text-align:justify;
}


.box{
    
    width:100%;
    height:250px;
	background-color:#fff;
	border:1px solid #e2e2e2;
	border-radius:3px;
	box-shadow: 2px 2px #e2e2e2;
	font-size:14px;
}


.box2{
    
    width:100%;
    height:960px;
	background-color:#fff;
	border:1px solid #e2e2e2;
	border-radius:3px;
	box-shadow: 2px 2px #e2e2e2;
	font-size:14px;
}


.box3{
    
    width:70%;
    height:auto;
	margin:0 auto;
}

.box_title{
    
    width:100%;
    height:40px;
	background-color:#e2e2e2;
	font-size:20px;
	padding-left:25px;
	color:#009087;
	padding-top:8px;
}

.button{
	background-image: linear-gradient(to right, #131b43, #3e70a8);
color: #fff;
width: 225px;
font-size: 14px;
font-weight: bold;
border-radius: 6px;
height:50px;
float:right;
margin-right:50px;
padding-top:6px;
}

.button a{
	text-decoration:none;
	color:#fff;
	
}
.button:hover{
	background-color:#4992de;
}




* {
  box-sizing: border-box;
}

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

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 6px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin-bottom:25px;
}

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

.container {
 
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* 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;
  }
}





















* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
}

#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  font-family: Raleway;
  padding: 40px;
  width: 70%;
  min-width: 300px;
}

h1 {
  text-align: center;  
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #4CAF50;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #4CAF50;
}