/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
    box-sizing: border-box;
}

.header {
    background-color: #0E3150;
    text-align: center;
    padding: 26px 0;
}

.content {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 15px 0;
}

.unsub-text {
    font-family: 'Niramit', sans-serif;
    font-size: 20px;
    line-height: 1.75;
    color: #15385C;
    text-align: center;
    padding: 0 22px 30px;
}

.unsub-input {
    display: block;
    width: 100%;
    height: 50px;
    max-width: 350px;
    margin: auto;
    border: 0;
    background-color: #f3f3f3;
    padding: 0 10px;
    font-size: 18px;
    color: #000;
    outline: none;
    margin-bottom: 30px;
    font-family: 'Niramit', sans-serif;
}

.unsub-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #8C8C8C; /* Firefox */
  }
  
.unsub-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #8C8C8C;
  }
  
.unsub-input::-ms-input-placeholder { /* Microsoft Edge */
    color: #8C8C8C;
}

.unsub-button {
    width: 230px;
    height: 48px;
    background-color: #B57FC9;
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 15px;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    font-family: 'Niramit', sans-serif;
    font-weight: 700;
    cursor:pointer;
}

.unsub-message {
    margin: 20px auto 0;
    max-width: 350px;
    font-family: 'Niramit', sans-serif;
    font-size: 16px;
    color: #15385C;
    text-align: center;
}

.unsub-message--error {
    color: #c0392b;
}


@media(min-width: 1024px) {
    .content {
        padding: 85px 15px 0;
    }
    .unsub-text {
        padding: 0 90px 35px;
    }
    .unsub-text.wide {
        padding: 0 0 35px;
    }
}
