/* reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code, del, dfn, font, img, ins, kbd, q, s, samp, small, strike, tt, var, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, footer, header, hgroup, menu, nav, section, aside {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-weight: normal;
    border-spacing: 0;
}

html {
    -webkit-text-size-adjust: none;
}

html, body {
    background: #eee;
    width: 100%;
    height: 100%;
    font-family: calluna, Georgia, serif;
    font-size: 17px;
    line-height: 1.2em;
    color: black;
    overflow: visible;
}

a {
  overflow: hidden;
  color: #154734;
  transition: all .18s;
  font-weight: bold;
  border-bottom: 1px dotted #154734;
  text-decoration: none;
}

  a:hover {
    color: #0a2d21;
    border-bottom: 1px solid #154734;
  }

.helpPage {
    font-family: "Droid Serif";
    line-height: 1.4em;
}


.loginContainer {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loginWindow {
    width: 500px;
    padding: 20px 0;
}

.loginHeader {
    width: 240px;
    margin: 0 auto;
    padding: 0 0 15px 0;
}

.loginForm {
    background: white;
    box-shadow: 0 0 5px rgba(0,0,0,.15);
    box-sizing: border-box;
    padding: 30px 25px;
    border-radius: 10px; 
}

h1 {
    font: 700 22px/1.1em bio-sans, Arial, sans-serif;
    text-transform: uppercase;
    color: #003015;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font: 700 18px/1.1em bio-sans, Arial, sans-serif;
    color: #003015;
    margin: 25px 0 0 0;
    text-align: center;
}

p,
.form-element-wrapper {
    margin: 20px 0;
}

    h2 + p {
        margin-top: 5px;
    }

input[type=text],
input[type=password],
input[type=submit]
{
    -webkit-appearance: none;
    border-radius: 0;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

    .form-element-wrapper-checkbox label {
        display: inline-block;
        margin-left: 5px;
    }

select {
    font-size: 16px;
}

form p a {
    display: inline-block;
    margin-left: 5px;
    text-decoration: none;
    color: #005525;
    border-bottom: 1px solid transparent;
    letter-spacing: -0.03em;
}

    form p a:hover {
        border-bottom-color: #003015;
        color: #003015;
    }

input[type=text],
input[type=password] {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #bdbdbd;
    font-size: 16px;
    transition: all .2s ease-out;
}

input[type=text]:hover,
input[type=password]:hover {
    border-color: #7f7f7f;
}

input[type=text]:focus,
input[type=password]:focus {
    border-color: #003015;
    outline: 0;
    box-shadow: 0 0 9px rgba(254,203,0,.3)
}

input[type=submit],
button {
    border: 1px solid #003015;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 12px 25px;
    background: #005525;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,.5);
    transition: all .3s ease-out;
    outline: 0;
}

    input[type=submit]:hover,
    input[type=submit]:focus,
    button:hover,
    button:focus {
        background-color: #003015;
        box-shadow: 0 0 8px rgba(254,203,0,.4);
    }

    input[type=submit]:active,
    button:active {
        background-color: #003015;
        box-shadow: 0 0 15px rgba(254,203,0,1)
    }

p:last-child,
.form-element-wrapper-button {
    margin: 25px 0 0 0;
    text-align: center;
}

.form-element-wrapper-button {
    
}

    .form-element-wrapper-button img {
        display: block;
        max-width: 200px;
        margin: 0 auto 22px auto;
    }

.helpPage p:last-child {
    margin-top: 20px;
    text-align: left;
}

.error {
    background: #ffeaea;
    border: 1px solid #e10000;
    padding: 12px 12px 12px 38px;
    position: relative;
    text-shadow: 1px 1px 0 rgba(255,255,255,.6);
}

    .error:after {
        display: block;
        font: 400 normal 18px/1em "Font Awesome 5 Pro";
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        content: "\f06a";
        color: #e10000;
        position: absolute;
        top: 12px;
        left: 12px;
    }

.baylorFooter-legal {
  font: normal 12px/1.5em bio-sans, sans-serif;
  text-align: center;
}

.baylor404-search-form-label {
  display: none;
}

.baylor404-search-form {
  margin: 20px 0 0 0;
  text-align: center
}

.baylor404-search-form-submit {
  margin-top: 15px;
  margin: 15px auto 0 auto;
}

@media(max-width:520px) {
    body {
        background: #fff;
    }

    .loginWindow {
      width: auto;
    }

    .loginForm {
        width: auto;
        box-shadow: none;
        border-radius: none;
        padding: 15px;
    }
}