html, body {
	margin: 0;
	padding: 0;
        font-family: sans-serif;
	background-color: #111111;
}

.title {
	display: flex;
	background-color: #8300FF;
	color: #111111;
	align-items: center;
	justify-content: center;
}

.wave-1 {
    position: realtive;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
	transform: translateY(-1px);
}

.wave-1 svg {
    position: relative;
    display: block;
    width: calc(162% + 1.3px);
    height: 86px;
}

.wave-1 .shape-fill {
    fill: #8300FF;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .wave-1 svg {
        width: calc(146% + 1.3px);
        height: 107px;
    }
}

@media (max-width: 767px) {
    .wave-1 svg {
        width: calc(186% + 1.3px);
        height: 118px;
    }
}

center {
     margin: 50px;
}

.submit-button{
    background:#34495e;
    color:#fff;
    box-shadow: 0 3px 0 #22303d;
}
.submit-button:hover{
    background:#425c77;    
}
.submit-button:active, .submit-button:focus{
    background:#2f4154;    
}

.btn{
    background:transparent;
    border: 2px solid transparent;
	border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    margin: 18px;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display:inline-block;
    outline:none;
    position:relative;
    top:0;
    text-shadow:0 1px 1px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
     transition: all 0.2s ease-in-out 0s;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
