* { box-sizing: border-box; margin: 0; padding: 0; }
::selection { color: #fff; background: #6bb4f2; }
body {
    background-color: #333;
    color: #fff;
    font-family: 'PT Sans Caption', sans-serif;
    font-size: 14px;
    margin: 0;
    min-height: 100vh;
}
a { color: #fff; text-decoration: none; }
a:hover { text-decoration: underline; }
.auth-page { min-height: 100vh; padding: 30px 0 40px; }
.logo {
    display: block;
    width: 241px;
    height: 60px;
    margin: 0 auto 24px;
    background: url('/img/blogo.png') 0 -6px/241px no-repeat;
}
.wrapper { width: 350px; margin: 0 auto; position: relative; }
.login-form {
    width: 350px;
    background: #f3f3f3;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    position: relative;
    overflow: hidden;
}
.header { padding: 40px 30px 30px; }
.header h1 {
    color: #414848;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 rgba(255,255,255,1);
}
.header span {
    color: #678889;
    display: block;
    font-size: 12px;
    line-height: 16px;
}
.content { padding: 0 30px 25px; }
.field-wrap { position: relative; }
.input {
    width: 100%;
    padding: 15px 25px;
    margin-top: 25px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.5);
    color: #414848;
    font-family: inherit;
    font-size: 14px;
}
.input:hover, .input:focus { background: #dfe9ec; }
.user-icon, .pass-icon, .mail-icon {
    width: 46px;
    height: 47px;
    position: absolute;
    top: 25px;
    right: -1px;
    border-radius: 5px 0 0 5px;
    border: 1px solid #666;
    border-right: 0;
}
.user-icon { background: rgba(65,72,72,.75) url('/tsi/usr.png') no-repeat center; }
.pass-icon { background: rgba(65,72,72,.75) url('/tsi/pass.png') no-repeat center; }
.mail-icon { background: rgba(65,72,72,.75) url('/tsi/mail.png') no-repeat center; }
.remember-row { color: #414848; display: block; margin-top: 18px; }
.alert {
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 12px;
    padding: 12px 14px;
}
.alert-error { background: #f8d7da; color: #842029; }
.alert-success { background: #d1e7dd; color: #0f5132; }
.footer {
    background: #d4dedf;
    border-top: 1px solid #fff;
    box-shadow: inset 0 1px 0 rgba(0,0,0,.15);
    min-height: 160px;
    padding: 25px 30px 40px;
    position: relative;
}
.compact-footer { min-height: 110px; }
.reglink {
    color: #aaa;
    font-size: 18px;
    left: 30px;
    position: absolute;
    top: 25px;
    z-index: 2;
}
.reglink a { color: #333; font-weight: 700; text-shadow: 0 1px 0 rgba(0,0,0,.25); }
.button {
    background: #3A4757;
    border: 1px solid #333;
    border-radius: 5px;
    color: #ccc;
    cursor: pointer;
    float: right;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    padding: 11px 25px;
    position: relative;
    z-index: 2;
}
.button:hover { background: #5F6C78; }
.footer-brand {
    bottom: -1px;
    height: 160px;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    width: 338px;
}
.wrfoot {
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    width: 100%;
}
.left-foot, .right-foot { font-size: 13px; }
.dashboard-content {
    color: #414848;
    display: grid;
    gap: 10px;
    padding-bottom: 30px;
}
