


/*form styles*/
.msform {	
	margin: 0px auto;
	text-align: center;
	position: relative;
}

fieldset{	
	overflow-x: hidden;
	overflow-y: auto;
}

.msform fieldset {
	padding: 20px 5px 0;
	box-sizing: border-box;
	width: 100%;
	position: relative;
	text-align: end;
}
/*Hide all except first fieldset*/
.msform fieldset:not(:first-of-type) {
	display: none;
}

/*inputs*/
.msform input, .msform textarea {
	   width: 100%; 
	margin: 0 auto;
	margin-bottom: 10px;
}


.msform select {
	width: 100%;
	margin: 0 auto;
	margin-bottom: 10px;
}

#CheckBox1{
    width:auto !important;
}
/*buttons*/
.msform .action-button {
    width: auto;
    background: rgb(21,101,224);
    color: white;
    border: 0 none;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 15px;
}
   
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
#progressbar {
	margin-bottom: 2vh 0;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
	#progressbar span {
		list-style-type: none;
		color: white;
		text-transform: uppercase;
		font-size: 9px;
		width: 25%;
		float: left;
		position: relative;
		font-weight: 300;
	}
	#progressbar span:before {
		content: counter(step);
		counter-increment: step;
		width: 20px;
		line-height: 20px;
		display: block;
		font-size: 10px;
		color: #333;
		background: white;
		border-radius: 50%;
		margin: 0 auto 5px auto;
		font-weight: 500;
	}
/*progressbar connectors*/
#progressbar span:after {
	content: '';
	width: 100%;
	height: 2px;
	background:rgb(21,101,224);
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
    #progressbar span:first-child:after {
        /*connector not needed before the first step*/
        content: none;
    }
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
    #progressbar span.active:before, #progressbar li.active:after {
        background: rgb(21,101,224);
        color: white;
    }


#CuadroLey {
	height: 35vh;
	overflow-y: hidden;
	overflow-x: hidden;
}

#Contrato {
	width: 100%;
	height: 35vh;
}

input.invalid, select.invalid, .check.invalid {
	background-color: #ffdddd;
	border-radius: 5px;
	color: rgba(0,0,0,.5);
}

.tab {
	display: none;
}

input, select {
	margin: 0 !important;
	width: 100%
}

.letrita {
	font-size: 8px;
	color: white;
	text-align: left;
	font-weight: 400;
}


.btn-registro {
	background: rgba(21,101,224,1);
	font-weight: 400;
	box-shadow: 0px 9px 5px 0px #00000063;
}


.btn-login {
	background: rgba(255,255,255,0.2);
}


	.btn-login:hover {
		background: rgba(255,255,255,0.5);
	}

fieldset {
	height: 80vh;
}

.textbox {
	font-size: 16px;
	font-weight: 400;
}

#progressbar span {
	width: 20% !important;
}

@media only screen and (max-width: 768px) {
	fieldset {
		height: auto !important;
	}
}

@media only screen and (max-height: 500px) {
	fieldset {
		height: auto !important;
	}
}
