@font-face {
	font-family: 'CircularPro-Medium';
	src:	url('../fonts/lineto-circular-pro-medium.eot'); /* IE9 Compat Modes */
	src:	url('../fonts/lineto-circular-pro-medium.woff2') format('woff2'),
			url('../fonts/lineto-circular-pro-medium.woff') format('woff');
}

@font-face {
	font-family: 'CircularPro-Bold';
	src:	url('fonts/lineto-circular-pro-bold.eot'); /* IE9 Compat Modes */
	src:	url('fonts/lineto-circular-pro-bold.woff2') format('woff2'),
			url('fonts/lineto-circular-pro-bold.woff') format('woff');
}
 
html{
	margin: 0;
	padding: 0;
	font-size: 20px;
	line-height: 25px;
	min-height: 100%;
	position: relative;
}

body{
	margin: 0;
	padding: 0;
	background: white;
	color: #505d69;
	font-family: "Chronicle Text G1 A", "Chronicle Text G1 B";
	font-style: normal;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

*{
	box-sizing:border-box;
}

  h1, h2, h3, h4, h5{
	  font-family: 'CircularPro-Medium', sans-serif;

	  margin: 0 0 0.5em 0;
    	padding: 0;
  }
  h1{
	  font-size:60px;
	  line-height:1;
  }


  .container{
  	display:flex;
  	height:100vh;
  }
  .container-left, .container-right{
	overflow:auto;
  	height:100%;
  	padding:60px;
  	width:100%;
  }
  .container-left{
  	background:#505d69;
  	color:white;

  	width:450px;
  }
  .container-right{
	  display:flex;
    	align-items: center;
    	flex-direction:row;
  	flex:1;
  	justify-content:center;
  }
  .container-right .inside{
  	border:2px dotted #CCC;
  	border-radius:6px;
  	padding:30px;
  	max-width:550px;
	flex:1;
  }
  .inside{

  }

  fieldset{
  	border:none;
  	margin:0;
  	padding:0 0 5px 0;
  	width:100%;
  }
  fieldset:last-of-type{
  	margin-bottom:25px;
  }
  label{
  	line-height: 22px;
  	letter-spacing: 0.7px;
  }

  table{
  	margin-bottom:0;
  }
  table tr:first-child th, table tr:first-child td{
  	border:none;
  }

  input[type="text"], textarea{
	font-size: inherit;
	font-family: inherit;
	padding: 15px 4px;
	letter-spacing: normal;
	background: #fff;
	border: none;
	color: #505d69;
	width:100%;
	outline:none;
  }

  .button{
	font-family: CircularPro-Bold, sans-serif;
	font-size: 22px;
	line-height: 22px;
	letter-spacing: 1px;
	font-weight: 400;
	background:white;
	border:3px solid #505d69;
	color: #505d69;
	cursor: pointer;
	display: inline-block;
	padding: 15px 22px;
	margin-bottom: 8px;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	transition: all 0.15s;
  	width:100%;
  }
  .button:hover{
  	background: #505d69;
	color:white;
  }
