body, html {
    height: 100%;
    margin: 0;
    font-family: Inter, Arial, sans-serif;
	letter-spacing: -0.5px;
}

.container {
    position: relative;
    height: 100%;
    background-image: url('https://cdn.stockmarketalerts.com/bg-1-min.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.wrapper {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 15px;
    box-sizing: border-box;
}

.logo {
    max-width: 250px;
}

.content {
    max-width: 600px;
    color: white;
    margin: auto 0; /* This centers the content vertically */
}

h1 {
    margin-bottom: 10px;
	margin-top:0px;
	font-size:42px;
	line-height:46px;
}
a {
	color:#da2328;
	text-decoration: underline;
}

p {
    font-size: 18px;
	line-height:24px;
    margin-bottom: 2rem;
}
p.subheadline {
	width:100%;
	max-width:550px;
	margin-top:15px;
	margin-bottom:35px;
}
.optin {
	width:100%;
	max-width:550px;
}
#subscribe-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#subscribe-form input {
    padding: 17px 10px;
	padding-left:15px;
    font-size: 18px;
    border-radius: 6px;
    border: none;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

#subscribe-form button {
    border: 0;
    background-color: #da2328;
    color: #fff;
    padding: 18px 0px;
    font-family: Inter, Arial sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 6px;
	transition: 200ms all;
}
#subscribe-form button:hover {
    cursor: pointer;
    background-color: #b60409;
}
.subscribers {
	display:flex;
	flex-direction:row;
	margin-top:30px;
	align-items:center;
}
.subscriber-wrapper {
    display: flex;
    padding: 0 4px;
}
.subscriber {
    width: 36px;
    height: 36px;
    margin-left: -8px;
    padding-right: 0px;
    padding-left: 0px;
    border-style: solid;
    border-width: 2px;
    border-color: #0F0F10;
    border-radius: 50%;
    display: flex;
}
.subscriber img {
    width: 100%;
    border-radius: 50%;
}
p.subscriber-text {
	margin:0px;
    margin-left: 10px;
    color: #888;
    font-size: 14px;
	line-height:18px;
	letter-spacing:normal;
}
.highlight {
    border-radius: 1em 0 1em 0;
    background-image: linear-gradient(-100deg, rgba(255, 224, 0, 0.3), rgba(255, 224, 0, 0.7) 95%, rgba(255, 224, 0, 0.1));
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.wrapper {
		padding:40px 25px;
	}
	h1 {
		font-size:46px;
		line-height:52px;
	}
	p {
		line-height:25px;
	}
	#subscribe-form {
		display: flex;
		flex-direction: row;
		width: 100%;
	}
	#subscribe-form input {
		margin-bottom: 0px;
		width: 65%;
		margin-right: 10px;
	}
	#subscribe-form button {
		width: 30%;
	}
	p.subscriber-text {
		font-size: 15px;
	}
}

/* Large devices (laptops and desktops, 992px and up) */
@media (min-width: 992px) {
	.wrapper {
		padding:40px 15px;
	}
}
