@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
    box-sizing: border-box;
}

body {
    background: #f6f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    margin: -20px 0 50px;
}

h1, h2 {
    text-align: center;
    font-weight: bold;
    margin: 0;
    margin-bottom: 10px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 
            0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

.btn {
	margin: 5px;
	border-radius: 20px;
	border: 1px solid #FF4B2B;
	background-color: #FF4B2B;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 10px 20px;
	letter-spacing: 1px;
	text-decoration: none;

}

input {
	background-color: #eee;
	border-radius: 20px;
	border: none;
	padding: 12px 20px;
	margin: 8px 8px;
	width: 250px;
}

.info {
    display: flex;
    justify-content: space-between;
}

button:hover {
    cursor: pointer;
}

.form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 50px;
	text-align: center;

}

label {
    padding-top: 12px;
}

.btnBox {
    text-align: center;
}

.form-label {
    padding-right: 5px;
}