/* Root styling */
:root {
    --white: #ffffff;
    --goldenrod: #fcba2f;
    --black: #161616;
    --grey: #ebedec;
    --orange: #ed6626;
    --pink: #e5005a;
    --blue: #00aec3;
    --purple: #151547;
    --green: #44b284;
}

/* CSS reset */
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 {
    border: 0;
    font: inherit;
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

/* Base styling */
body {
    font-family: Raleway, sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}

p {
    font-size: 14px;
    line-height: 25px;
    margin: 0;
}

strong {
    font-weight: 700;
}


.button {
    border: 1px solid transparent;
    border-radius: 35px;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 25px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all ease-in-out 300ms;
    -o-transition: all ease-in-out 300ms;
    transition: all ease-in-out 300ms;
}

.button:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* Main styling */
.login-button-section {
    margin-bottom: 30px;
    text-align: center;
}

.login-button {
    min-width: 320px;
}

.login-button, .login-button:active, .login-button:focus {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.login-button:after {
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    content: "";
    height: 8px;
    position: absolute;
    right: 15px;
    top: calc(50% - 6px);
    width: 8px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.job-intro-section {
    background-color: #fafafa;
    border-bottom: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    margin-top: 15px;
    padding: 25px 30px 35px;
}

p.job-intro-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

p.job-intro-copy {
    margin-bottom: 15px;
}

p.job-intro-copy-list {
    margin-bottom: 25px;
}

.apply-button {
    margin-right: 20px;
}

.apply-button, .more-info-button {
    max-width: 260px;
    width: calc(50% - 20px);
}

.apply-button, a.apply-button:active, a.apply-button:focus {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--white);

}

.more-info-button, .more-info-button:active, .more-info-button:focus {
    border-color: #e3e3e3;
    color: var(--black);
}

.login-button:hover, .apply-button:hover, .more-info-button:hover {
    background-color: var(--black);
    border-color: var(--black);
    color: var(--white);
}