.form__button {
    width: 100%;
	padding: 1rem 0;
	background-color: #ADD8E6;
	color: white;
	font-weight: bold;
	font-size: 1.2rem;
	border: none;
	border-radius: 5px;
}


@media screen and (min-width: 768px) {

    .form__button {
        width: 50%;
    }
}

@media screen and (min-width: 1024px) {

    .form__button {
        transition: 1s all;
	    cursor: pointer;
    }

    .form__button:hover {
        background-color: #00008B;
        transform: scale(1.2);
    }
}