@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&family=Roboto:wght@400;700&display=swap');



.container {
    max-width: 660px;
    margin: 0 auto;
    padding: 0 20px;
}


form {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin: -40px 0 80px;
    font-size: 20px;
    position: relative;
    box-shadow: 0 40px 50px -50px #c20430;
}

form input {
    display: block;
    width: 100%;
	font-family: Poppins-Regular;
    border-radius: 12px;
    border: 2px solid #e6e6e6;
    height: 68px;
    padding: 15px;
    background: #ffffff;
    color: #000000f;
    transition: 0.5s;
}

form input:focus {
    outline: none;
    box-shadow: 0px 10px 30px -20px #c20430;
    filter: contrast(90%)
}

form label {
	font-family: Poppins-Regular;
    color: #555555;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

form .subscribe {
    font-family: Poppins-Regular;
	max-width: 300px;
    height: auto;
    background: #c20430;
	color: #ffffff;
    border: #c20430 2px solid;
    border-radius: 12px;
    font-weight: bold;
    line-height: normal;
    margin: 0 auto -80px;
}

form .subscribe:hover {
    background: #e64461;
	border: #c20430 2px solid;
    color: #ffffff;
    cursor: pointer;

}

/* Mailchimp CSS */

form .mc-field-group {
    margin-bottom: 35px;
}

form .indicates-required {
    font-family: Poppins-Regular;
	color: #555555;
    font-size: 0.8em;
    margin: 35px 0;
    text-align: center;
}

form input + .mce_inline_error {
    display: inline-block;
	font-family: Poppins-Regular;
    font-size: 0.5em;
    position: relative;
}

form input + .mce_inline_error:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #6B0505;
    position: absolute;
    top: -10px;
}

form #mce-success-response {
    font-family: Poppins-Regular;
	background: green;
    padding: 25px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    transition: 1s;
    animation: response 1s forwards;
}

form #mce-error-response {
    font-family: Poppins-Regular;
	background: #6B0505;
    padding: 25px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    transition: 1s;
    animation: response 1s forwards;
}
form #mce-error-response a {
    font-family: Poppins-Regular;
	color: #fff;
}

form label .asterisk {
    color: #c20430;
    font-size: 0.5em;
    vertical-align: super;
}

@keyframes response {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    header {
        padding: 80px 0;
    }
    header h1 {
        font-size: 4em;
    }
}

