/*
    style.css
    December 17, 2018
    Caleb Hess
 */

body {
    padding: 0px;
    margin: 0px;
    color: #ddd;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #1f1f1f;
    -webkit-text-size-adjust: 100%;
}

body, #frmcms {
    height: 100%;
}

body, input {
    font-family: 'raleway', sans-serif;
}

input:focus {
    outline: 0;
}

input:invalid {
    box-shadow: none;
}

[onclick] {
    cursor: pointer;
}

/* ---------------------------------------------------------------------- */
#login-page {
    height: 100vh;
    background-image: url('../../_agapao/img/wheat10.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #D4D4D4;
}

@media screen and (min-width: 600px) {
    #login-page {
        padding: 0px 10vw;
        background-size: contain;
    }
}

/* ---------------------------------------------------------------------- */
#login-center-column {
    width: 100%;
    padding-top: 16vh;
    padding-bottom: 80px;
    text-align: center;
}

#login-create-hint {
    color: #4e4e4e;
}

#login-create-hint-link, #login-create-hint-link:visited {
    font-weight: 700;
    text-decoration: none;
    color: #ce5226;
}

#login-box-holder {
    display: inline-block;
    width: calc(100% - 20px);
    height: auto;
    margin-top: 20px;
    padding: 8px;
    background-color: #111;
}

#login-box {
    width: calc(100% - 46px);
    padding: 20px;
    border: solid 3px #222;
}

@media screen and (min-width: 300px) {
    #login-box-holder {
    width: 280px;
    border-radius: 10px;
    border: 5px solid #e3e3e3;
    }
}

@media screen and (min-width: 400px) {
    #login-center-column {
        padding-top: 20vh;
    }
}

@media screen and (min-width: 700px) {
    #login-center-column {
        padding-top: 24vh;
    }
}

@media screen and (orientation:portrait) and (min-width: 1000px) {
    #login-center-column {
        padding-top: 33vh;
    }
}

/* ---------------------------------------------------------------------- */
.login-title {
    font-size: 1.4em;
    font-weight: 300;
    text-align: left;
}

#login-entries {
    padding-top: 20px;
}

.login-entry {
    margin-top: 12px;
    color: #999;
    background-color: #2a2a2a;
    border: solid 1px #333;
    border-radius: 20px;
}

.login-entry-icon {
    line-height: 32px;
}

.login-entry-input {
    vertical-align: top;
    width: calc(100% - 60px);
    height: 32px;
    padding: 0px 7px;
    font-size: 0.9em;
    color: #fff;
    background-color: transparent;
    border: none;
    box-sizing: border-box;
    -webkit-appearance: none;
}

.login-entry-input::placeholder {
    font-weight: 700;
    color: rgba(153, 153, 153, 0.3);
}

.login-entry-input:-webkit-autofill,
.login-entry-input:-webkit-autofill:hover,
.login-entry-input:-webkit-autofill:focus,
.login-entry-input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 30px #2a2a2a inset;
}

.login-actions {
    padding-top: 20px;
}

.login-action {
    display: inline-block;
    vertical-align: top;
    margin-top: 20px;
    padding: 9px 8px;
    font-size: 10pt;
    font-weight: 700;
    color: #fff;
    background-color: #2ea6dd;
    width: 150px;
    text-align: center;
}


/* ---------------------------------------------------------------------- */
.login-results {
    display: none;
    font-style: italic;
    color: #999;
}

.login-results.activated {
    display: block;
    padding: 25px 0px 15px 0px;
}

.login-results a, .login-results a:visited {
    color: #47d;
}

.login-error {
    color: #bb2929;
}

/* ---------------------------------------------------------------------- */
#login-forgotten-hints {
    padding-top: 40px;
    text-align: left;
}

.login-forgotten-hint {
    margin-top: 7px;
    font-weight: 500;
    color: #2ea6dd;
    text-align: center;
    font-size: 11pt;
}

/* ---------------------------------------------------------------------- */
#login-password-reset-area {
    display: none;
    padding-bottom: 20px;
}

#login-password-reset-title {
    padding-top: 30px;
    font-weight: 700;
    color: #ce5226;
}

#login-password-reset-subtitle {
    margin-top: 5px;
    color: #ce5226;
}

.login-entry-forgotten {
    margin-top: 30px;
}