.container-form {
    width: 600px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 50px 35px 10px 35px;
    margin: 0 auto;
}
  .container-form header{
	font-size: 35px;
	font-weight: 600;
	margin: 0 0 30px 0;
  }
  .container-form .form-outer{
	width: 100%;
	overflow: hidden;
  }
  .container-form .form-outer form{
	display: flex;
	width: 400%;
  }
  .form-outer form .page{
	width: 25%;
	transition: margin-left 0.3s ease-in-out;
  }
  .form-outer form .page .title{
	text-align: left;
	font-size: 25px;
	font-weight: 500;
    margin-bottom: 25px;
  }
  .form-outer form .page .field{
	width: 530px;
	height: 45px;
	margin: 45px 0;
	display: flex;
	position: relative;
  }
  form .page .field .label{
	position: absolute;
	top: -30px;
	font-weight: 500;
  }
  form .page .field input{
	height: 100%;
	width: 100%;
	border: 1px solid lightgrey;
	border-radius: 5px;
	padding-left: 15px;
	font-size: 18px;
  }
  form .page .field select{
	width: 100%;
	padding-left: 10px;
	font-size: 17px;
	font-weight: 500;
  }
  form .page .field button{
	width: 100%;
	height: calc(100% + 5px);
	border: none;
	background: #302783;
	margin-top: -20px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: 0.5s ease;
  }
  form .page .field button:hover{
	background: #251f5a;
  }
  form .page .btns button{
	margin-top: -20px!important;
  }
  form .page .btns button.prev{
	margin-right: 3px;
	font-size: 17px;
    background: #f6af4d;
  }
  form .page .btns button.next{
	margin-left: 3px;
  }
  .container-form .progress-bar-form{
	display: flex;
	margin: 20px 0;
	user-select: none;
  }
  .container-form .progress-bar-form .step{
	text-align: center;
	width: 100%;
	position: relative;
  }
  .container-form .progress-bar-form .step p{
	font-weight: 500;
	font-size: 18px;
	color: #000;
	margin-bottom: 8px;
  }
  .progress-bar-form .step .bullet{
	height: 35px;
	width: 35px;
	border: 2px solid #000;
	display: inline-block;
	border-radius: 50%;
	position: relative;
	transition: 0.2s;
	font-weight: 500;
	font-size: 15px;
	line-height: 25px;
  }
  .progress-bar-form .step .bullet.active{
	border-color: #302783;
	background: #302783;
  }
  .progress-bar-form .step .bullet span{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	color: #000;
    line-height: 30px;
  }
  .progress-bar-form .step .bullet.active span{
	display: none;
  }
  .progress-bar-form .step .bullet:before,
  .progress-bar-form .step .bullet:after{
	position: absolute;
    content: '';
    bottom: 13px;
    right: -9px;
    height: 3px;
    width: 8px;
    background: #262626;
  }
  .progress-bar-form .step .bullet.active:after{
	background: #302783;
	transform: scaleX(0);
	transform-origin: left;
	animation: animate 0.3s linear forwards;
  }
  @keyframes animate {
	100%{
	  transform: scaleX(1);
	}
  }
  .progress-bar-form .step:last-child .bullet:before,
  .progress-bar-form .step:last-child .bullet:after{
	display: none;
  }
  .progress-bar-form .step p.active{
	color: #302783;
	transition: 0.2s linear;
  }
  .progress-bar-form .step .check{
	position: absolute;
	left: 50%;
	top: 51%;
	font-size: 15px;
	transform: translate(-50%, -50%);
	display: none;
  }
  .progress-bar-form .step .check.active{
	display: block;
	color: #fff;
  }

  
.checkbox {
	display: grid;
	grid-template-columns: -webkit-min-content auto;
	grid-template-columns: min-content auto;
	grid-gap: 0.5em;
    font-size: 1.3rem;
    line-height: 20px;
	color: var(--color);
    margin-left: 5px;
    text-align: left;
    margin-bottom: 15px;
  }
  .checkbox--disabled {
	color: var(--disabled);
  }
  
  .checkbox__control {
	display: inline-grid;
	width: 1em;
	height: 1em;
	border-radius: 0.25em;
	border: 0.1em solid currentColor;
  }
  .checkbox__control svg {
	-webkit-transition: -webkit-transform 0.1s ease-in 25ms;
	transition: -webkit-transform 0.1s ease-in 25ms;
	transition: transform 0.1s ease-in 25ms;
	transition: transform 0.1s ease-in 25ms, -webkit-transform 0.1s ease-in 25ms;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-transform-origin: bottom left;
			transform-origin: bottom left;
  }
  
  .checkbox__input {
	display: grid;
	grid-template-areas: "checkbox";
  }
  .checkbox__input > * {
	grid-area: checkbox;
  }
  .checkbox__input input {
	opacity: 0;
	width: 1em;
	height: 1em;
  }
  .checkbox__input input:focus + .checkbox__control {
	box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
  }
  .checkbox__input input:checked + .checkbox__control svg {
	-webkit-transform: scale(1);
			transform: scale(1);
  }
  .checkbox__input input:disabled + .checkbox__control {
	color: var(--disabled);
  }
  

  .radio-form {
	display: grid;
    grid-template-columns: -webkit-min-content auto;
    grid-template-columns: min-content auto;
    grid-gap: 1em;
    font-size: 1.25rem;
    color: var(--color);
    text-align: left;
    margin-bottom: 20px;
    margin-left: 5px;
  }
  .radio-form:focus-within .radio__label {
	-webkit-transform: scale(1.05);
			transform: scale(1.05);
	opacity: 1;
  }
  
  .radio__label {
	line-height: 1;
	-webkit-transition: 180ms all ease-in-out;
	transition: 180ms all ease-in-out;
	opacity: 0.8;
  }
  
  .radio__input {
	display: -webkit-box;
	display: flex;
  }
  .radio__input input {
	opacity: 0;
	width: 0;
	height: 0;
  }
  .radio__input input:focus + .radio__control {
	box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
  }
  
  .radio-gradient input:checked + .radio__control {
	background: radial-gradient(currentcolor 50%, rgba(255, 0, 0, 0) 51%);
  }
  
  .radio-before .radio__control {
	display: grid;
	place-items: center;
  }
  .radio-before input + .radio__control::before {
	content: "";
	width: 0.5em;
	height: 0.5em;
	box-shadow: inset 0.5em 0.5em currentColor;
	border-radius: 50%;
	-webkit-transition: 180ms -webkit-transform ease-in-out;
	transition: 180ms -webkit-transform ease-in-out;
	transition: 180ms transform ease-in-out;
	transition: 180ms transform ease-in-out, 180ms -webkit-transform ease-in-out;
	-webkit-transform: scale(0);
			transform: scale(0);
  }
  .radio-before input:checked + .radio__control::before {
	-webkit-transform: scale(1);
			transform: scale(1);
  }
  
  .radio__control {
	display: block;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	border: 0.1em solid currentColor;
	-webkit-transform: translateY(-0.05em);
			transform: translateY(-0.05em);
  }