    a{
    	text-decoration: none;
    }

    p{
        margin: 0;
    }

    body{
    	font-family: 'Roboto', sans-serif;
    	background-color: #A9D9C3;
    }

    .register-page-div{
    	width: 100%;
    	display: block;
    }

    .register-form{
    	margin: 0px auto;
    	padding: 50px 60px 50px;
    	background-color: #fff;
    	border-radius: 5px;
    }

    .register-form h2{
    	text-align: center;
    	font-weight: 600;
    	margin-bottom: 25px;
    }

    .register-form span{
    	margin-bottom: 10px;
    	color: red;
    }

    .register-form input{
    	padding: 23px 20px;
    }

    .register-form input:focus{
    	box-shadow: none;
    }

    .register-form button{
    	padding: 6px 30px;
    	border: 1px solid #006699;
    	background-color: #006699;
    	color: #fff;
    	font-weight: 500;
    	transition-duration: 0.2s;
    	width: 100%;
    	margin-top: 10px;
    }

    .register-form button:focus{
    	box-shadow: none;
    }

    .register-form button:hover{
    	background-color: #fff;
    	color: #000;
    }

    .register-form button a{
    	text-decoration: none;
    	color: #fff;
    }

    .register-form button:hover a{
    	color: #000;
    }

    @media only screen and (max-width: 600px) {
		  .register-form {
		    padding: 30px 30px 40px;
		}

        .register-form h2 {
            font-size: 25px;
        }
	}