/* 响应式登录页样式 */
/* 通用样式 - 适用于所有屏幕尺寸 */
.login {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .login {
        width: 80% !important;
        max-width: 450px;
    }

    .message {
        font-size: 20px !important;
        padding: 12px 0 !important;
    }

    .layui-form-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-bottom: 0 !important;
    }

    .layui-input-inline {
        width: 60% !important;
        margin-right: 5px !important;
    }

    #verifyCodeImg {
        width: 35% !important;
    }

    .footer {
        position: fixed;
        bottom: 10px;
        width: 100%;
    }
}