/* global */

body{
	font-family: 'Raleway', Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6,p{
    margin-bottom: 1rem;
}
p,label{
	font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.black_text {
	color:black;
}

/* content */

.unsubscribe-page-content{
	height: 100vh;
	min-height: 450px;
	padding: 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	background-image: url(../img/email-key-GAZXLJ3.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}
.unsubscribe-page-content:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.925);
}
.unsubscribe-page-content .container{
	position: relative;
	z-index: 1;
}
.unsubscribe-page-content h1{
	text-align: center;
	margin-bottom: 80px;
	font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}
.unsubscribe-form-wrapper{
	width: 100%;
	max-width: 540px;
	margin: 0 auto;
}
.unsubscribe-form-wrapper form{

}
.unsubscribe-form-wrapper label{
	cursor: pointer;
}
.unsubscribe-form-wrapper input[type="email"]{
	width: 100%;
	margin-bottom: 1rem;
	outline: 0;
	border: 0;
	border-bottom: 2px solid #bbb;
	padding: 4px 0;
	background: transparent;
	transition: border-color 150ms ease-out;
}
.unsubscribe-form-wrapper input[type="email"]:focus{
	border-color: #209020;
}
.unsubscribe-check-wrapper{
	position: relative;
	padding-left: 28px;
	margin-bottom: 80px;
}
.unsubscribe-check-wrapper input[type="checkbox"]{
	opacity: 0;
	position: absolute;
	top: 2px;
	left: 1px;
	width: 18px;
	height: 18px;
}
.unsubscribe-check-wrapper i{
	position: absolute;
	top: 2px;
	left: 0;
	font-size: 22px;
    transition: all 150ms ease-out;
}
.unsubscribe-check-wrapper input[type="checkbox"] ~ i.fa.fa-square-o, .unsubscribe-check-wrapper input[type="checkbox"] ~ i.fa.fa-square{
	color: #bbb;
    opacity: 1;
    visibility: visible;
}
.unsubscribe-check-wrapper input[type="checkbox"] ~ i.fa.fa-check-square-o,.unsubscribe-check-wrapper input[type="checkbox"] ~ i.fa.fa-check-square{
    opacity: 0;
    visibility: hidden;
}
.unsubscribe-check-wrapper input[type="checkbox"]:checked ~ i.fa.fa-square-o, .unsubscribe-check-wrapper input[type="checkbox"]:checked ~ i.fa.fa-square{
    opacity: 0;
    visibility: hidden;
}
.unsubscribe-check-wrapper input[type="checkbox"]:checked ~ i.fa.fa-check-square-o, .unsubscribe-check-wrapper input[type="checkbox"]:checked ~ i.fa.fa-check-square{
    color: #209020;
    opacity: 1;
    visibility: visible;
}
.unsubscribe-btn{
	border: 0;
	outline: 0 !important;
	cursor: pointer;
	margin: 0 auto;
	color: #fff;
	background: #af4e4e;
	display: table;
	border-radius: 5px;
	padding: 8px 70px;
	font-weight: bold;
	transition: background 150ms ease-out;
}
.unsubscribe-btn:hover{
	background: #da6868;
}