/* ============================================
   TCDOS 后台 - 登录页样式
   ============================================ */

html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

body {
    background: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 500px;
    max-width: 100%;
}

.card {
    border: none;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.card-header {
    background: #fff;
    border-bottom: 0;
    padding-top: 32px;
    text-align: center;
}

.card-body {
    padding: 24px 40px 40px;
}

.card-header h3 {
    font-weight: 600;
    color: #1a1a2e;
}

.form-control {
    height: 46px;
    border-radius: 8px;
}

.btn-login {
    height: 46px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
}

.honeypot {
    position: absolute !important;
    left: -99999px !important;
    top: -99999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}