/* Default element styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
    line-height: 1;
    height: 100%;
    color: #8A9499;
    background-color: #363d40;
    letter-spacing: -0.05em;
    -webkit-font-smoothing: antialiased;
}

html.base-10px,
html.base-10px body {
    font-size: 10px;
}

html.base-16px,
html.base-16px body {
    font-size: 16px;
}

body.has-footer .page-content {
    padding-bottom: 120px;
}

/* Global Page Styles */

.page-wrapper {
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    width: 100%;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.page-content {
    width: 100%;
    padding-top: 200px;
    padding-bottom: 60px;
    flex: 1 0 auto;
}

.marketing-page.dark .page-content {
    font-size: 20px;
    background-color: #363d40;
}

.marketing-page.light .page-content {
    background-color: #FFF;
}

.page-width {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    max-width: 1180px;
    padding-right: 20px;
    padding-left: 20px;
}

.small-page-width {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    max-width: 640px;
    padding-right: 20px;
    padding-left: 20px;
}

.has-hero .page-content {
    padding-top: 130px;
}

/* STYLES FOR LOGIN AND CREATE ACCOUNT PAGES */

body.login-page input[type="text"],
body.login-page input[type="password"],
body.create-account-page input[type="text"],
body.create-account-page input[type="password"] {
    margin-bottom: 20px;
}

body.login-page input[type="submit"],
body.create-account-page input[type="submit"] {
    font-size: 1.1em;
    padding-left: 0;
    padding-right: 0;
}

body.login-page .alternative,
body.create-account-page .alternative {
    color: #6B7980;
    text-align: center;
    font-size: 1em;
    text-decoration: none;
    padding: 20px 0;
    display: block;
}

body.login-page .alternative .highlight,
body.create-account-page .alternative .highlight {
    color: #FFF;
    font-weight: 700;
}

body.account-page .page-title {
    font-weight: 700;
    color: #FFF;
    font-size: 2.2em;
    letter-spacing: -0.07em;
    margin-top: 30px;
    margin-bottom: 60px;
    text-align: center;
}

body.account-page .page-subtitle {
    margin-bottom: 60px;
}

body.account-page .btn.facebook {
    background-color: #3b5999;
}

body.account-page .btn.facebook:hover {
    background-color: #324a80;
}

.marketing-page.create-account-page .btn,
.marketing-page.login-page .btn {
    font-size: 1.2rem;
}