/* ============================================
   Login Page - Modern Design
   Goldwasser Immobilien Intranet
   ============================================ */

/* Override body layout for login page */
body.login-page {
    background: #1e1e1e;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.login-page #containerMainAll {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hide header, nav and footer on login page */
body.login-page #header,
body.login-page #navC,
body.login-page #footer {
    display: none;
}

/* ============================================
   Login Wrapper & Card
   ============================================ */

#loginWrapper {
    width: 420px;
    padding: 40px 0;
}

#loginCard {
    background: #ffffff;
    border-top: 4px solid #AC995F;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
    padding: 45px 50px 40px 50px;
    text-align: center;
}

/* ============================================
   Logo Area
   ============================================ */

#loginLogoArea {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0eeea;
}

#loginLogoArea img {
    max-width: 187px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ============================================
   Subtitle
   ============================================ */

#loginCard h2 {
    font-size: 10px;
    font-weight: bold;
    color: #AC995F;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 28px 0;
    font-family: Verdana, Helvetica, Arial, sans-serif;
}

/* ============================================
   Form Fields
   ============================================ */

.loginField {
    margin-bottom: 16px;
    text-align: left;
}

.loginField label {
    display: block;
    font-size: 10px;
    font-weight: bold;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
    /* reset global label/float rules */
    float: none;
    width: auto;
    padding: 0;
    text-align: left;
    line-height: normal;
}

.loginField input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 12px;
    font-family: Verdana, Helvetica, Arial, sans-serif;
    color: #333;
    /* reset global input rules */
    float: none;
    margin: 0;
    height: auto;
}

.loginField input:focus,
.loginField input:hover {
    border-color: #AC995F !important;
    background: #fff !important;
    outline: none !important;
}

/* ============================================
   Submit Button
   ============================================ */

.loginBtn {
    display: block !important;
    width: 100% !important;
    background: #AC995F !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 20px !important;
    font-size: 11px !important;
    font-weight: bold !important;
    font-family: Verdana, Helvetica, Arial, sans-serif !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 12px;
    height: auto !important;
    float: none !important;
    box-sizing: border-box;
}

.loginBtn:hover,
.loginBtn:focus {
    background: #8f7e4a !important;
    outline: none !important;
    border-color: transparent !important;
}

/* ============================================
   Error Message
   ============================================ */

.loginError {
    color: #a94442;
    font-size: 11px;
    margin-top: 16px;
    padding: 10px 12px;
    background: #fdf2f2;
    border-left: 3px solid #a94442;
    text-align: left;
    font-family: Verdana, Helvetica, Arial, sans-serif;
}
