html {
  background-color: #399aad;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  background-color: #399aad;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 0px 8px 10px 8px;
  color: #525252;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 75%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 1000px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
  font-family: 'Ubuntu';
}


@font-face {
    font-family: 'Ubuntu';
    src: URL('/static/fonts/Ubuntu-Regular.ttf') format('truetype');
  }

  html {
  	-webkit-font-smoothing: antialiased!important;
  	-moz-osx-font-smoothing: grayscale!important;
  	-ms-font-smoothing: antialiased!important;
  }
  body {
    font-family: 'Open Sans', sans-serif;
    font-size:16px;
    color:#555555;
  }
  .md-stepper-horizontal {
  	display:table;
  	width:100%;
  	margin:0 auto;
  	background-color:#FFFFFF;
  }
  .md-stepper-horizontal .md-step {
  	display:table-cell;
  	position:relative;
  	padding:24px;
  }
  .md-stepper-horizontal .md-step:active {
  	border-radius: 15% / 75%;
  }
  .md-stepper-horizontal .md-step:first-child:active {
  	border-top-left-radius: 0;
  	border-bottom-left-radius: 0;
  }
  .md-stepper-horizontal .md-step:last-child:active {
  	border-top-right-radius: 0;
  	border-bottom-right-radius: 0;
  }
  .md-stepper-horizontal .md-step:first-child .md-step-bar-left,
  .md-stepper-horizontal .md-step:last-child .md-step-bar-right {
  	display:none;
  }
  .md-stepper-horizontal .md-step .md-step-circle {
  	width:30px;
  	height:30px;
  	margin:0 auto;
  	background-color:#999999;
  	border-radius: 50%;
  	text-align: center;
  	line-height:30px;
  	font-size: 16px;
  	font-weight: 600;
  	color:#FFFFFF;
  }
  .md-stepper-horizontal.green .md-step.active .md-step-circle {
  	background-color:#00AE4D;
  }
  .md-stepper-horizontal.orange .md-step.active .md-step-circle {
  	background-color:#0d6efd;
  }
  .md-stepper-horizontal .md-step.active .md-step-circle {
  	background-color: rgb(33,150,243);
  }
  .md-stepper-horizontal .md-step.done .md-step-circle:before {
  	font-family:'FontAwesome';
  	font-weight:100;
  	content: "\f00c";
  }
  .md-stepper-horizontal .md-step.done .md-step-circle *,
  .md-stepper-horizontal .md-step.editable .md-step-circle * {
  	display:none;
  }
  .md-stepper-horizontal .md-step .md-step-title {
  	margin-top:16px;
  	font-size:16px;
  	font-weight:600;
  }
  .md-stepper-horizontal .md-step .md-step-title,
  .md-stepper-horizontal .md-step .md-step-optional {
  	text-align: center;
  	color:rgba(0,0,0,.26);
  }
  .md-stepper-horizontal .md-step.active .md-step-title {
  	font-weight: 600;
  	color:rgba(0,0,0,.87);
  }
  .md-stepper-horizontal .md-step.active.done .md-step-title,
  .md-stepper-horizontal .md-step.active.editable .md-step-title {
  	font-weight:600;
  }
  .md-stepper-horizontal .md-step .md-step-optional {
  	font-size:12px;
  }
  .md-stepper-horizontal .md-step.active .md-step-optional {
  	color:rgba(0,0,0,.54);
  }
  .md-stepper-horizontal .md-step .md-step-bar-left,
  .md-stepper-horizontal .md-step .md-step-bar-right {
  	position:absolute;
  	top:36px;
  	height:1px;
  	border-top:1px solid #DDDDDD;
  }
  .md-stepper-horizontal .md-step .md-step-bar-right {
  	right:0;
  	left:50%;
  	margin-left:20px;
  }
  .md-stepper-horizontal .md-step .md-step-bar-left {
  	left:0;
  	right:50%;
  	margin-right:20px;
  }

  .loader {
    margin: 0 auto !important; /*Add this line*/
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
  }
  /* Safari */
  @-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
