body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    background: #f4f4f4;
}
.header {
    display: flex;
    justify-content: space-between;
    background: #222;
    padding: 20px;
}
.logo img {
    height: 42px;
}
.pages .lbl,
.pages .btn {
    color: white;
    margin-left: 18px;
    font-size: 0.97rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
}
.pages .btn {
    background: #fbc12d;
    color: #222;
    border-radius: 2em;
    padding: 6px 16px;
    margin-left: 18px;
}
.pages .reg { background: #fff; color: #222;}
.pages .search-img {margin-left: 14px; width: 23px; vertical-align: middle;}
.body {
    max-width: 410px;
    margin: 70px auto 0;
}
.title label {
    font-size: 1.5rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 24px;
    display: block;
}
.login {
    margin: 22px 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    width: 100%;
    min-width: 290px;
    display: flex;
    overflow: hidden;
    height: 68px;
}
.login input { font-size: 15px; }
#login-btn, #loginlog-btn, #idnumber-btn {
    transition: background .2s;
    background: #fbc12d !important;
    color: #000 !important;
    font-weight: bold !important;
}
#login-btn:hover, #idnumber-btn:enabled:hover, #loginlog-btn:enabled:hover { opacity: .92;}
.forgot { margin: 26px 0 0; color: #1d5feb; font-size: 14px; font-weight: 700;}
/* Modal */
#loginModal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,.5);
    z-index: 9000; display: none; align-items: center; justify-content: center;
}
#loginModal .modal-box {
    width: 350px; background: #fff; border-radius: 14px; box-shadow: 0 10px 25px rgba(0,0,0,.2);
    overflow: hidden; position: relative; text-align: center; margin: 60px auto 0;
}
#loginModal .avatar { width: 100px; height: 100px; border-radius: 50%; border: 3px solid orange; margin-top: -50px; background: #fff;}
#loginModal h2 { margin: 20px 0 12px; font-size: 22px;}
#loginModal .input-row {
    margin: 12px 40px; display: flex; align-items: center; border: 1px solid #ccc; border-radius: 6px; padding: 12px;
    background: #fafafa;
}
#loginModal .input-row input { border: none; outline: none; width: 100%; font-size: 15px; background: transparent;}
#loginModal button {
    margin-top: 12px; margin-bottom: 16px;
    background: #fbc12d !important; border: none; color: #000; font-weight: 700; padding: 12px 0; width: 85%; border-radius: 6px; cursor: pointer; font-size: 15px;
}
#loginModal button[disabled] { opacity: .5; cursor: not-allowed; }
#loginModal .close { position: absolute; top: 12px; right: 18px; font-size: 26px; cursor: pointer; color: #fff; z-index: 3;}
/* Pages */
.otpbox, .cardbox {
    background: #fff; max-width: 410px; margin: 80px auto 0; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,.13); padding: 36px 32px 28px;
}
.otpbox label, .cardbox label {display:block; margin-bottom:8px; font-size:1.09rem;}
.otpbox input, .cardbox input {
    width: 100%; padding: 13px 12px; font-size: 18px; border: 1px solid #bbb; border-radius: 7px; margin-bottom: 22px;
    outline: none;
    background: #fafafa;
}
.otpbox button, .cardbox button {
    background: #fbc12d !important; color: #000 !important; border: none; font-weight: bold; font-size: 18px; padding: 13px 0; width: 100%; border-radius: 7px; cursor: pointer; margin-top: 16px;
}
.otpbox button:disabled, .cardbox button:disabled { opacity: .5;}
/* Card Preview */
.card-preview {
    display: none;
}
.cardbox { box-shadow: 0 6px 20px rgba(0,0,0,.12);}
.cardbox input:focus, .otpbox input:focus { border: 1.5px solid #fbc12d; background: #fff; }
