* {
	margin : 0;
	padding : 0;
}



h1{
	font-size: 20px;
}

h2{
	font-size: 16px;
}

p{
	margin-top: 10px;
	margin-bottom: 10px;
}

.container{
	margin: auto;
	width: 600px;
}

.separation{
	height: 20px;
	background-color: #4D4D4D;
	margin-top: 20px;
	margin-bottom: 20px;
}

#login{
	padding: 20px;
	border: 1px solid grey;
	border-radius: 5px;
}

#code{
	background-color: #4D4D4D;
	width: 300px;
	height: 40px;
	margin: auto;
	color: #FFF;
	line-height: 40px;
	text-align: center;
}

.submit{
	background-color: #4D4D4D;
	margin: 10px;
	padding: 10px;
	color: #FFF;
}

.terms{
	font-size: 10px;
	text-align:center;
}



#login {
    padding: 20px;
    border: none;
    border-radius: 5px;
    background: #fff;
    border-radius: 30px;
}

#login h1 {
	text-align:center;
	margin-bottom:20px;
	font-weight:300;
	text-transform:uppercase;
}

.submit {
    background-color: #6377ee;
    margin: 20px;
    border-radius: 30px;
    border: none;
    cursor:pointer;
    font-size: 20px;
    padding: 20px;
    transition: all 500ms ease;
    color: #FFF;
    box-shadow: 0 10px 30px 3px rgba(99, 119, 238, 0.3);
}


.submit:hover {
    background-color: #fff;
    color:#6377ee;
    border-radius: 30px;
    border: none;
    font-size: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px 3px rgba(99, 119, 238, 0.3);
}

.theme {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #fff !important;
    padding: 15px 58px;
    text-align: center;
    cursor: pointer;
    border-radius: 30px;
    z-index: 1;
    transition: all 500ms ease;
    border: none;
    color: #fff !important;
    padding: 10.5px 35px;
}

.theme:hover {
	color:#6377ee!important;
	background:#fff;
	border:none;
}

#code {
    background-color: #a9aabe;
    width: 300px;
    height: 40px;
    border-radius: 20px;
    margin: auto;
    color: #FFF;
    line-height: 40px;
    text-align: center;
}

input[type="text"] {
    border: 1px solid #FFF;
    border-radius: 20px;
    min-height: 27px;
    width: 61px;
    text-align: center;
}

hr {
    color: #FFF;
    border: 1px solid #6377ee;

}

.container{
    height: 100vh;
    display: flex;
    width: 60%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (min-width: 1450px){
	.container{
    	height: 100vh;
    	display: flex;
    	width: 40%;
    	align-items: center;
    	flex-direction: column;
    	justify-content: center;
	}   
}