@import url('https://fonts.googleapis.com/css?family=Roboto:500,700&display=swap');

body{
  background: #4d4d4d;
	margin:0;
	font-family: 'Roboto', sans-serif;
}

.bold{
  font-weight:700;
  font-size:25px;
}

.normal{
  font-weight:500;
  font-size:17px;
}

.move{
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	position: absolute;
	width: 220px;
	transform: translate(250px);
	z-index: 20;
	background-color: #386d8d;
	transition: all .4s ease;
	border-radius: 0px 10px 10px 0px;
}

.move div {
	color: #f8f8f8;
	padding: 3px 20px;
}

.move div:nth-child(2n) {
	padding-bottom: 12px;
}

.ml20 {
	margin-left: 20px;
}

.form{
	text-align: center;
	position: absolute;
	height: 100%;
	width: 250px;
	background-color: #fff;
	border-radius: 10px 0px 0px 10px;
}

.form label {
	display: block;
	text-align: left;
	width: 60%;
	margin: 0 auto;
	color: #777;
}

input{
  border:0px;
  border-bottom:1px solid lightgray;
  margin-bottom:15px;
  padding: 8px 5px;
  width:60%;
}

.b-button{
  background-color:#386d8d;
  color:white;
  padding:12px 60px;
  color:#fff;
	font-size:14px;
	border: none;
	outline: none;
	border-radius:25px;
	cursor: pointer;
}

h4{
  font-size:22px;
}

p{
  font-size:14px;
}

.container{
	height: 350px;
	width: 450px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.mt30 {
	margin-top: 30px;
}

